remove unneccessary vim colorschemes and set tmux statusline
This commit is contained in:
parent
8a373f6838
commit
1d594670de
1 changed files with 18 additions and 3 deletions
|
@ -12,18 +12,29 @@ Plug 'stephpy/vim-yaml'
|
||||||
" Design
|
" Design
|
||||||
Plug 'vim-airline/vim-airline'
|
Plug 'vim-airline/vim-airline'
|
||||||
Plug 'vim-airline/vim-airline-themes'
|
Plug 'vim-airline/vim-airline-themes'
|
||||||
|
Plug 'edkolev/tmuxline.vim'
|
||||||
|
|
||||||
" Colorschemes
|
" Colorschemes
|
||||||
Plug 'phanviet/vim-monokai-pro'
|
|
||||||
Plug 'Nequo/vim-allomancer'
|
Plug 'Nequo/vim-allomancer'
|
||||||
Plug 'nightsense/cosmic_latte'
|
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" PLUGIN CONFIGURATION
|
" PLUGIN CONFIGURATION
|
||||||
let g:airline_extensions = []
|
|
||||||
let g:airline_powerline_fonts=1
|
let g:airline_powerline_fonts=1
|
||||||
let g:airline_theme='raven'
|
let g:airline_theme='raven'
|
||||||
|
let g:airline_extensions = ['keymap', 'netrw', 'po', 'quickfix', 'term', 'whitespace']
|
||||||
|
colorscheme allomancer
|
||||||
|
" custom preset with left-justified window list
|
||||||
|
let g:tmuxline_preset = {
|
||||||
|
\'a' : '#S',
|
||||||
|
\'b' : '#(whoami)',
|
||||||
|
\'c' : '#I:#P',
|
||||||
|
\'win' : '#I #W',
|
||||||
|
\'cwin' : [' ', '#I #W'],
|
||||||
|
\'x' : '#{prefix_highlight} %H:%M:%S',
|
||||||
|
\'y' : '%d-%b-%y',
|
||||||
|
\'z' : '#H',
|
||||||
|
\'options' : {}}
|
||||||
|
|
||||||
" VIM SETTINGS
|
" VIM SETTINGS
|
||||||
" set truecolor (neovim)
|
" set truecolor (neovim)
|
||||||
|
@ -56,6 +67,10 @@ set smartcase
|
||||||
" whenever vim loses focus, save
|
" whenever vim loses focus, save
|
||||||
au FocusLost * :wa
|
au FocusLost * :wa
|
||||||
|
|
||||||
|
" disables showing us the current mode in the command line since airline takes
|
||||||
|
" care of it
|
||||||
|
set noshowmode
|
||||||
|
|
||||||
" KEYBINDINGS
|
" KEYBINDINGS
|
||||||
"
|
"
|
||||||
" set our leader key to space since with hjkl, space is largely useless
|
" set our leader key to space since with hjkl, space is largely useless
|
||||||
|
|
Loading…
Reference in a new issue