diff --git a/vimrc.symlink b/vimrc.symlink index 2737d7b..e5af147 100644 --- a/vimrc.symlink +++ b/vimrc.symlink @@ -65,6 +65,11 @@ Plug 'tpope/vim-markdown', { 'for': 'markdown'} " Colorschemes Plug 'altercation/vim-colors-solarized' +" TOML +Plug 'cespare/vim-toml', { 'for': 'toml' } + +set wildignore+=node_modules + " All of your Plugins must be added before the following line call plug#end() " required filetype plugin indent on " required diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index 42c60c5..b515e6e 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -11,3 +11,4 @@ alias gl='git log' alias gc='git commit ' alias ga='git add ' +alias mem='cd /dev/shm'