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"]
|
[submodule ".vim/bundle/vim-gitgutter"]
|
||||||
path = .vim/bundle/vim-gitgutter
|
path = .vim/bundle/vim-gitgutter
|
||||||
url = https://github.com/airblade/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 noswapfile
|
||||||
set encoding=utf-8
|
set encoding=utf-8
|
||||||
|
|
||||||
" colours
|
|
||||||
set t_Co=256
|
|
||||||
syntax on
|
|
||||||
set background=dark
|
|
||||||
color solarized
|
|
||||||
colorscheme solarized
|
|
||||||
|
|
||||||
" special chars
|
" special chars
|
||||||
nmap <leader>l :set list!<CR>
|
nmap <leader>l :set list!<CR>
|
||||||
set listchars=tab:▸\ ,eol:¬
|
set listchars=tab:▸\ ,eol:¬
|
||||||
|
@ -25,6 +18,12 @@ set expandtab
|
||||||
execute pathogen#infect()
|
execute pathogen#infect()
|
||||||
filetype plugin indent on
|
filetype plugin indent on
|
||||||
|
|
||||||
|
" colours [need pathogen]
|
||||||
|
set t_Co=256
|
||||||
|
syntax enable
|
||||||
|
set background=dark
|
||||||
|
colorscheme solarized
|
||||||
|
|
||||||
" plugins: airline
|
" plugins: airline
|
||||||
let g:bufferline_echo = 0
|
let g:bufferline_echo = 0
|
||||||
let g:airline_powerline_fonts = 1
|
let g:airline_powerline_fonts = 1
|
||||||
|
@ -32,8 +31,6 @@ let g:airline#extensions#tabline#enabled = 1
|
||||||
|
|
||||||
|
|
||||||
" appearance
|
" appearance
|
||||||
highlight clear SignColumn
|
|
||||||
"highlight SignColumn ctermbg=brblack
|
|
||||||
set relativenumber
|
set relativenumber
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
set noshowmode
|
set noshowmode
|
||||||
|
|
Loading…
Reference in a new issue