-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
48 lines (39 loc) · 1.14 KB
/
vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
set nocompatible " be iMproved, required
filetype off " required
filetype plugin indent on " required
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" More powerful backspace
set backspace=indent,eol,start
" Use 4 space indentation
set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab " Use spaces instead of tabs
" Always show line numbers
set number
" Always show info along bottom
set ruler
" Color scheme and syntax highlighting
syntax enable
set background=dark
set t_Co=256
colorscheme solarized
" Highlight 81st coloumn
set colorcolumn=81
highlight ColorColumn ctermbg=0
" Change SignColumn color
highlight SignColumn ctermbg=8
" Natural splitting
set splitbelow
set splitright
" Key Remaps
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>