vim: solarized used via pathogen
This commit is contained in:
parent
22e971530c
commit
f49cc0b3a1
4 changed files with 10 additions and 1126 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -22,3 +22,6 @@
|
|||
[submodule ".vim/bundle/vim-gitgutter"]
|
||||
path = .vim/bundle/vim-gitgutter
|
||||
url = https://github.com/airblade/vim-gitgutter
|
||||
[submodule ".vim/bundle/vim-colors-solarized"]
|
||||
path = .vim/bundle/vim-colors-solarized
|
||||
url = https://github.com/jumski/vim-colors-solarized
|
||||
|
|
1
.vim/bundle/vim-colors-solarized
Submodule
1
.vim/bundle/vim-colors-solarized
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 54864d547cb54177e3a00d1166637c1fddddfad5
|
File diff suppressed because it is too large
Load diff
15
.vimrc
15
.vimrc
|
@ -2,13 +2,6 @@
|
|||
set noswapfile
|
||||
set encoding=utf-8
|
||||
|
||||
" colours
|
||||
set t_Co=256
|
||||
syntax on
|
||||
set background=dark
|
||||
color solarized
|
||||
colorscheme solarized
|
||||
|
||||
" special chars
|
||||
nmap <leader>l :set list!<CR>
|
||||
set listchars=tab:▸\ ,eol:¬
|
||||
|
@ -25,6 +18,12 @@ set expandtab
|
|||
execute pathogen#infect()
|
||||
filetype plugin indent on
|
||||
|
||||
" colours [need pathogen]
|
||||
set t_Co=256
|
||||
syntax enable
|
||||
set background=dark
|
||||
colorscheme solarized
|
||||
|
||||
" plugins: airline
|
||||
let g:bufferline_echo = 0
|
||||
let g:airline_powerline_fonts = 1
|
||||
|
@ -32,8 +31,6 @@ let g:airline#extensions#tabline#enabled = 1
|
|||
|
||||
|
||||
" appearance
|
||||
highlight clear SignColumn
|
||||
"highlight SignColumn ctermbg=brblack
|
||||
set relativenumber
|
||||
set laststatus=2
|
||||
set noshowmode
|
||||
|
|
Loading…
Reference in a new issue