-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc
42 lines (38 loc) · 776 Bytes
/
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
syntax on
set tabstop=2
set shiftwidth=2
set softtabstop=0
set cindent
set autoindent
imap <c-z> <esc>:undo<cr>i
nmap wl <C-w>l
nmap wh <c-w>h
nmap wj <c-w>j
nmap wk <c-w>k
nmap w> <c-w>>
nmap w< <c-w><
nmap w+ <c-w>+
nmap w- <c-w>-
nmap <enter> <C-]>
nmap <space> <C-t>
nmap <right> :bn<cr>
nmap <left> :bp<cr>
"imap <left> <esc><left>
"imap <right> <esc><right>
set fdm=syntax
color asmanian2
nmap <tab> ==
nmap . :
filetype plugin indent on
set completeopt=longest,menu
set nocp
filetype plugin on
set guicursor+=i:ver30-iCursor
let g:SuperTabDefaultCompletionType = "<c-n>"
highlight Pmenu ctermbg=9 guibg=brown gui=bold
highlight PmenuSel ctermbg=4
set cursorline
highlight CursorLine ctermfg=green
set statusline+=%f
"always display statusline
set laststatus=2