From 1d6287de9eacb5fba7fe0e86ceb4d0844069620e Mon Sep 17 00:00:00 2001 From: lightofshadow Date: Sat, 19 Apr 2025 12:27:39 +0000 Subject: [PATCH] Changed lightline colorsheme --- init.vim | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/init.vim b/init.vim index 2ad2673..9137a4c 100644 --- a/init.vim +++ b/init.vim @@ -3,6 +3,8 @@ set autoindent set termguicolors set cursorline set ts=4 sw=4 +"gets rid of --INSERT-- useful bc of lighline" +set noshowmode call plug#begin() "file explorer" @@ -18,7 +20,6 @@ Plug 'jiangmiao/auto-pairs' Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'} call plug#end() - let $NVIM_TUI_ENABLE_TRUE_COLOR=1 " Start NERDTree. If a file is specified, move the cursor to its window. @@ -28,7 +29,6 @@ autocmd BufEnter * if tabpagenr('$') == 1 && winnr('$') == 1 && exists('b:NERDTr nnoremap n :NERDTreeFocus nnoremap :NERDTreeToggle - let g:NERDTreeGitStatusWithFlags = 1 "let g:WebDevIconsUnicodeDecorateFolderNodes = 1 "let g:NERDTreeGitStatusNodeColorization = 1 @@ -43,10 +43,11 @@ let g:NERDTreeGitStatusWithFlags = 1 "\ "Ignored" : "#808080" "\ } - let g:NERDTreeIgnore = ['^node_modules$'] -let g:airline_powerline_fonts = 1 +let g:lightline = { + \ 'colorscheme': 'wombat', + \ } let g:sonokai_style = 'shusia' let g:sonokai_better_performance = 1