summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authorJohannes Stolp <jstolp@vgfr65cs2.internal.synopsys.com>2016-07-01 17:41:55 +0200
committerJohannes Stolp <jstolp@vgfr65cs2.internal.synopsys.com>2016-07-01 17:41:55 +0200
commit72706eb9323065cdb4152d73926fd680a4c5a9ab (patch)
tree4ab215cd6f2093d81915d2c8e5c685c5e3082fd3 /.vimrc
parentd3501225442d08275d1300e8797d1c15e0025488 (diff)
downloaddotfiles-72706eb9323065cdb4152d73926fd680a4c5a9ab.tar.gz
dotfiles-72706eb9323065cdb4152d73926fd680a4c5a9ab.zip
Removed current plugin handling, added script to install vundle(a vim plugin manager).
Adapted vim config files to use vundle. To install new vim plugins, they must be added to .vim/vimrc_files/vundle.vim
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc18
1 files changed, 8 insertions, 10 deletions
diff --git a/.vimrc b/.vimrc
index 3c43376..0069d2b 100644
--- a/.vimrc
+++ b/.vimrc
@@ -1,29 +1,26 @@
" dotfiles -- .vimrc
" author: johannst
-runtime! debian.vim
-
set nocompatible " make Vim less Vi
+
+source ~/.vim/vimrc_files/vundle.vim
+source ~/.vim/vimrc_files/plugin_config.vim
+
+
" +----------------------------+
" | Color Settings |
" +----------------------------+
syntax on
-"set background=light
+" default colorscheme
set background=dark
-
-"colorscheme solarized
-"colorscheme scheakur
-"colorscheme pride
colorscheme buddy
-"colorscheme gruvbox
" +----------------------------+
" | Basic Settings |
" +----------------------------+
-filetype on " try to detect filetypes
filetype plugin indent on " enable loading indent file for filetype
set ffs=unix,dos,mac " Try recognizing dos, unix, and mac line endings.
@@ -46,6 +43,7 @@ set softtabstop=4 " <BS> over an autoindent deletes both spaces.
set shiftround " rounds indent to a multiple of shiftwidth
set backspace=2
+set hidden " do not unload abandoned buffers
set nowrap " don't wrap text
set noautowrite " Never write a file unless I request it.
set noautowriteall " NEVER.
@@ -54,7 +52,7 @@ set shortmess+=a " Use [+]/[RO]/[w] for modified/readonly/written.
set smarttab " Handle tabs more intelligently
set smartcase " Do smart case matching
-set autoindent "Copy indent from current line when starting a new line
+set autoindent " Copy indent from current line when starting a new line
set smartindent " use smart indent if there is no indent file
set showmatch " Show matching brackets.
set mat=2 " how many tenths of a second to blink when matching brackets