diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-03-21 20:15:34 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-03-21 20:15:34 +0100 |
commit | f20096022de6453ad6e054357ade2fbba97a2423 (patch) | |
tree | 09340522eac9453a45c508f7d22754f9823f89c5 /vim/vimrc | |
parent | 3bdd71d25d67e69bc4e510ac26e262a77f9578ff (diff) | |
download | dotfiles-f20096022de6453ad6e054357ade2fbba97a2423.tar.xz |
Maybe some other time…
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -31,12 +31,13 @@ colorscheme Darkcustomside " Smart Tabs (http://www.emacswiki.org/emacs/SmartTabs) NeoBundle 'gustavo-hms/vim-smart-tabs' +NeoBundle 'rust' + syntax on filetype plugin indent on set autoindent " always set autoindenting on set copyindent " copy the previous indentation on autoindenting set number " always show line numbers -set showmatch " set show matching parenthesis set smartcase " ignore case if search pattern is all lowercase, " case-sensitive otherwise set hlsearch " highlight search terms @@ -99,3 +100,5 @@ autocmd BufWinEnter * match ExtraWhitespace /\s\+$/ autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/ autocmd InsertLeave * match ExtraWhitespace /\s\+$/ autocmd BufWinLeave * call clearmatches() + +highlight Comment cterm=italic |