commit 93e11dcbe156960bbf3b501b7304368d7a290826
parent cc9ae8020473ad0dfd29ea7d8c09b096d71a0023
Author: Bharatvaj <bharatvaj@yahoo.com>
Date: Tue, 7 Dec 2021 19:22:30 +0530
Disable status and lightline.vim
Add vim-tmux-navigator for better navigation
Diffstat:
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/.config/vim/plugin/plugin.vim b/.config/vim/plugin/plugin.vim
@@ -14,7 +14,6 @@ call plug#begin($XDG_DATA_HOME."/vim/plugged")
Plug 'tpope/vim-repeat'
Plug 'tommcdo/vim-ninja-feet'
Plug 'ap/vim-css-color'
- Plug 'itchyny/lightline.vim'
Plug 'wellle/context.vim'
Plug 'easymotion/vim-easymotion'
Plug 'SirVer/ultisnips'
@@ -22,6 +21,7 @@ call plug#begin($XDG_DATA_HOME."/vim/plugged")
Plug 'ntpeters/vim-better-whitespace'
Plug 'lpinilla/vim-codepainter'
Plug '907th/vim-auto-save'
+ Plug 'christoomey/vim-tmux-navigator'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
source $XDG_CONFIG_HOME/vim/plugin/development.vim
diff --git a/.config/vim/vimrc b/.config/vim/vimrc
@@ -84,6 +84,15 @@ endfor
set fillchars=vert:\│
hi VertSplit term=NONE cterm=NONE gui=NONE
+"TODO use inverse colors from fg and bg instead of hardcoding black and white values
+hi LineNr ctermbg=Black ctermfg=White
+
+" Prominent Cursor Line
+hi CursorLineNr ctermbg=White ctermfg=Black
+
+" Disable status
+set laststatus=0
+
" Plugins
source $XDG_CONFIG_HOME/vim/plugin/plugin.vim