added vim config and solarized scheme
This commit is contained in:
parent
11e94a838d
commit
ddc6fdb82c
2 changed files with 1132 additions and 0 deletions
1118
.vim/colors/solarized.vim
Normal file
1118
.vim/colors/solarized.vim
Normal file
File diff suppressed because it is too large
Load diff
14
.vimrc
Normal file
14
.vimrc
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
syntax on
|
||||||
|
filetype on
|
||||||
|
set background=dark
|
||||||
|
set showcmd
|
||||||
|
set hlsearch
|
||||||
|
colorscheme solarized ".vim/colors/solarized.vim
|
||||||
|
|
||||||
|
" Jump to last position in file when reopening
|
||||||
|
if has("autocmd")
|
||||||
|
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
set t_Co=256
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue