dotfiles

Cross platform dotfiles for linux, mac and windows

commit e0e308df5cc1ede509dd24927b6276c72b24b6d1
parent 15a19eca366be0799950934be39a2ed2420d5f63
Author: Bharatvaj <bharatvaj@yahoo.com>
Date: Tue, 7 Dec 2021 19:24:47 +0530

Merge pull request #23 from bharatvaj/macos

Lynx power user and vim space save
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