From 3ad1666ff5abd62bf7acc4856c09b73bc8569d2d Mon Sep 17 00:00:00 2001 From: Marcel Schneider Date: Sun, 2 Apr 2017 19:59:19 +0200 Subject: [PATCH] Add toml support --- vimrc.symlink | 5 +++++ zsh/aliases.zsh | 1 + 2 files changed, 6 insertions(+) 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'