diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-08-19 22:13:02 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-08-19 22:13:02 +0100 |
commit | 05d1cfdc4bd81aeeeae81d9c5fe8942fe767cd8f (patch) | |
tree | 542d6daffd1e574813dc7307616023d5ace77f92 /NeoVim/.config/nvim | |
parent | d5787b95e7c8acde18f1d4a215591a5b65431d37 (diff) | |
download | dotfiles-05d1cfdc4bd81aeeeae81d9c5fe8942fe767cd8f.tar.gz dotfiles-05d1cfdc4bd81aeeeae81d9c5fe8942fe767cd8f.tar.bz2 dotfiles-05d1cfdc4bd81aeeeae81d9c5fe8942fe767cd8f.zip |
(NeoVim)+NeoSolarized theme and a toggle for relative line numbers
Diffstat (limited to 'NeoVim/.config/nvim')
-rw-r--r-- | NeoVim/.config/nvim/init.vim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/NeoVim/.config/nvim/init.vim b/NeoVim/.config/nvim/init.vim index 4cb69db..6a28892 100644 --- a/NeoVim/.config/nvim/init.vim +++ b/NeoVim/.config/nvim/init.vim @@ -4,6 +4,7 @@ filetype off "" Plugins set rtp+=~/.vim/bundle/Vundle.vim +set termguicolors call vundle#begin() "" Core @@ -20,6 +21,7 @@ Plugin 'junegunn/fzf.vim' Plugin 'godlygeek/tabular' Plugin 'tpope/vim-commentary' Plugin 'tpope/vim-surround' +Plugin 'overcache/NeoSolarized' Plugin 'altercation/vim-colors-solarized' call vundle#end() @@ -31,7 +33,6 @@ set nocompatible set ignorecase set smartcase set clipboard=unnamed -set relativenumber set nobackup set noundofile set nowritebackup @@ -50,7 +51,7 @@ let mapleader = ' ' "" Theming set background=dark -colorscheme koehler +colorscheme NeoSolarized " Set backgrounds off => transparency! highlight Normal guibg=none highlight NonText guibg=none @@ -70,6 +71,7 @@ nnoremap <leader>fr :so ~/.vimrc<CR>:PluginInstall<CR>:PluginClean<CR> nnoremap <leader>qq :q!<CR> nnoremap <leader>gs :G<CR> nnoremap <leader><leader> : +nnoremap <leader>l :set relativenumber!<CR> "" File Management nnoremap <leader>ff :Files <CR> |