add elixir snippets/alias, configure ssh heartbeat, add inotify-tools

This commit is contained in:
Inhji 2019-05-06 09:33:29 +02:00
parent 45345054da
commit 58f276613f
4 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,7 @@
'.text.html.elixir':
'Template':
'prefix': 't'
'body': '<%= $1 %>'
'End Template':
'prefix': 'end'
'body': '<% end %>'

2
config/ssh/config Normal file
View File

@ -0,0 +1,2 @@
Host *
ServerAliveInterval 120

View File

@ -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"

View File

@ -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]