diff options
author | Johannes Stolp <jstolp@fr65zebu10.internal.synopsys.com> | 2016-05-26 00:30:32 +0200 |
---|---|---|
committer | Johannes Stolp <jstolp@fr65zebu10.internal.synopsys.com> | 2016-05-26 00:30:32 +0200 |
commit | 0dc3ada5e50954284c892dccad1747a5c916b0c1 (patch) | |
tree | f50e973aef527ab695144e3c7aa53ba18c2b7e6c /.vimrc | |
parent | fa733214fb11be2e32f2630411bc250bd9e2c972 (diff) | |
download | dotfiles-0dc3ada5e50954284c892dccad1747a5c916b0c1.tar.gz dotfiles-0dc3ada5e50954284c892dccad1747a5c916b0c1.zip |
Changed order of sourcing external files in .vimrc
Added new keymaps
added two xterm color shemes
Diffstat (limited to '.vimrc')
-rw-r--r-- | .vimrc | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -3,14 +3,6 @@ runtime! debian.vim set nocompatible " make Vim less Vi " +----------------------------+ -" | Source Extrenal Files | -" +----------------------------+ -source ~/.vim/vimrc_files/colors.vim -source ~/.vim/vimrc_files/highlight.vim -source ~/.vim/vimrc_files/keymaps.vim -source ~/.vim/vimrc_files/functions.vim - -" +----------------------------+ " | Color Settings | " +----------------------------+ syntax on @@ -18,10 +10,10 @@ syntax on "set background=light set background=dark -colorscheme solarized +"colorscheme solarized "colorscheme scheakur "colorscheme pride -"colorscheme buddy +colorscheme buddy "colorscheme gruvbox @@ -49,6 +41,7 @@ set expandtab " expand tabs to spaces set shiftwidth=4 " but an indent level is 2 spaces wide. set softtabstop=4 " <BS> over an autoindent deletes both spaces. set shiftround " rounds indent to a multiple of shiftwidth +set backspace=2 set nowrap " don't wrap text set noautowrite " Never write a file unless I request it. @@ -83,3 +76,11 @@ set wildignore+=*.o,*.obj,.git,*.pyc,*~ set noerrorbells set novisualbell set tm=500 + +" +----------------------------+ +" | Source Extrenal Files | +" +----------------------------+ +source ~/.vim/vimrc_files/colors.vim +source ~/.vim/vimrc_files/keymaps.vim +source ~/.vim/vimrc_files/highlights.vim +source ~/.vim/vimrc_files/functions.vim |