(NeoVim)+NeoSolarized theme and a toggle for relative line numbers

This commit is contained in:
2024-08-19 22:13:02 +01:00
parent d5787b95e7
commit 05d1cfdc4b

View File

@@ -4,6 +4,7 @@ filetype off
"" Plugins "" Plugins
set rtp+=~/.vim/bundle/Vundle.vim set rtp+=~/.vim/bundle/Vundle.vim
set termguicolors
call vundle#begin() call vundle#begin()
"" Core "" Core
@@ -20,6 +21,7 @@ Plugin 'junegunn/fzf.vim'
Plugin 'godlygeek/tabular' Plugin 'godlygeek/tabular'
Plugin 'tpope/vim-commentary' Plugin 'tpope/vim-commentary'
Plugin 'tpope/vim-surround' Plugin 'tpope/vim-surround'
Plugin 'overcache/NeoSolarized'
Plugin 'altercation/vim-colors-solarized' Plugin 'altercation/vim-colors-solarized'
call vundle#end() call vundle#end()
@@ -31,7 +33,6 @@ set nocompatible
set ignorecase set ignorecase
set smartcase set smartcase
set clipboard=unnamed set clipboard=unnamed
set relativenumber
set nobackup set nobackup
set noundofile set noundofile
set nowritebackup set nowritebackup
@@ -50,7 +51,7 @@ let mapleader = ' '
"" Theming "" Theming
set background=dark set background=dark
colorscheme koehler colorscheme NeoSolarized
" Set backgrounds off => transparency! " Set backgrounds off => transparency!
highlight Normal guibg=none highlight Normal guibg=none
highlight NonText 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>qq :q!<CR>
nnoremap <leader>gs :G<CR> nnoremap <leader>gs :G<CR>
nnoremap <leader><leader> : nnoremap <leader><leader> :
nnoremap <leader>l :set relativenumber!<CR>
"" File Management "" File Management
nnoremap <leader>ff :Files <CR> nnoremap <leader>ff :Files <CR>