diff --git a/config/atom/snippets.cson b/config/atom/snippets.cson index e69de29..37ccb12 100644 --- a/config/atom/snippets.cson +++ b/config/atom/snippets.cson @@ -0,0 +1,7 @@ +'.text.html.elixir': + 'Template': + 'prefix': 't' + 'body': '<%= $1 %>' + 'End Template': + 'prefix': 'end' + 'body': '<% end %>' diff --git a/config/ssh/config b/config/ssh/config new file mode 100644 index 0000000..5ae664d --- /dev/null +++ b/config/ssh/config @@ -0,0 +1,2 @@ +Host * + ServerAliveInterval 120 diff --git a/config/zshrc b/config/zshrc index 661c4e8..626ffe6 100644 --- a/config/zshrc +++ b/config/zshrc @@ -1,6 +1,7 @@ # Path to your oh-my-zsh configuration. export ZSH=$HOME/.dotfiles/oh-my-zsh export DOTFILES=$HOME/.dotfiles +export PATH=$HOME/.local/bin:$PATH # Set name of the theme to load --- if set to "random", it will # load a random theme each time oh-my-zsh is loaded, in which case, @@ -32,3 +33,4 @@ alias up="sudo apt update" alias i="sudo apt install" alias trz="trezor-agent" alias gs="git status" +alias phx="iex -S mix phx.server" diff --git a/install.conf.yaml b/install.conf.yaml index baf6ea8..d71cfb2 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -13,7 +13,10 @@ path: config/atom/* relink: true force: true + ~/.ssh/config: + path: config/ssh/config + force: true - shell: - - [sudo apt install zsh build-essential -y, Installing base packages] + - [sudo apt install zsh build-essential inotify-tools -y, Installing base packages] - [git submodule update --init --recursive, Updating submodules]