From a92789e8707d2a077bc6d3fedfcdf377bc6ceba1 Mon Sep 17 00:00:00 2001 From: Oxbian Date: Sun, 7 Sep 2025 10:27:25 +0200 Subject: feat: vim install script + theme update --- conf/options.vim | 4 +++- conf/plugins.vim | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'conf') diff --git a/conf/options.vim b/conf/options.vim index f36ac55..07774de 100644 --- a/conf/options.vim +++ b/conf/options.vim @@ -7,7 +7,9 @@ set hlsearch " Highlight all match search pattern " Graphics options syntax on " Show syntax color set number " Show line number -colorscheme onedark " Set vim theme to onedark +colorscheme everforest " Set vim theme to everforest +set termguicolors +set background=light set colorcolumn=80 " Add an indicator for 80 char limit set textwidth=80 " Set max text width "autocmd BufNewFile,BufRead * setlocal formatoptions=cropt " Linebreak at 80 char diff --git a/conf/plugins.vim b/conf/plugins.vim index e56d72d..28de1fd 100644 --- a/conf/plugins.vim +++ b/conf/plugins.vim @@ -15,7 +15,7 @@ autocmd VimEnter * if len(filter(values(g:plugs), '!isdirectory(v:val.dir)')) call plug#begin('~/.config/vim/plugged') " UI & Themes -Plug 'joshdick/onedark.vim' " Onedark themes for vim +Plug 'sainnhe/everforest' " Everforest theme for vim Plug 'liuchengxu/vim-which-key' " Show leader mapping cheatsheet " Git integration @@ -89,6 +89,7 @@ set statusline+=\ \|\ %{coc#status()}%{get(b:,'coc_current_function','')} set statusline+=\ \|\ %l:%c set statusline+=\ [%p%%]\ +let g:gruvbox_termcolors=16 " Which Key call which_key#register('', "g:which_key_map") -- cgit v1.2.3