From 05d1cfdc4bd81aeeeae81d9c5fe8942fe767cd8f Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 19 Aug 2024 22:13:02 +0100 Subject: (NeoVim)+NeoSolarized theme and a toggle for relative line numbers --- NeoVim/.config/nvim/init.vim | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'NeoVim/.config') 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 fr :so ~/.vimrc:PluginInstall:PluginClean nnoremap qq :q! nnoremap gs :G nnoremap : +nnoremap l :set relativenumber! "" File Management nnoremap ff :Files -- cgit v1.2.3-13-gbd6f