summaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2024-06-04 23:21:10 -0500
committerzachir <zachir@librem.one>2024-06-04 23:23:21 -0500
commitfa42672400b9b668a77b649843456af310fc21d3 (patch)
treedcf64fa9fde6a67b179411fd8b625605519deadb /nvim
parentac384234fdb81c7d923ce341a0c24ccbe0583db9 (diff)
Add nvim colo's and commented bg options
Adding in tomasiser/vim-code-dark and flazz/vim-colorschemes to provide more color options. Also have options (commented out) to make the background transparent should that be desired later.
Diffstat (limited to 'nvim')
-rw-r--r--nvim/init.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/nvim/init.vim b/nvim/init.vim
index 8c0d378..97b8a40 100644
--- a/nvim/init.vim
+++ b/nvim/init.vim
@@ -3,6 +3,8 @@ call plug#begin('~/.config/nvim/plugged')
" colorschemes {{{
Plug 'tomasiser/vim-code-dark' " codedark color scheme
Plug 'flazz/vim-colorschemes' " meta-color scheme package
+Plug 'tomasiser/vim-code-dark' " codedark color scheme
+Plug 'flazz/vim-colorschemes' " meta-color scheme package
Plug 'ZachIndigo/vim-preglow' " my old color scheme
" }}}
" language support {{{
@@ -66,6 +68,10 @@ filetype plugin indent on
"" GUI Config
set guifont=mononoki\ Nerd\ Font\ Mono:h12
+"hi Normal guibg=NONE ctermbg=NONE
+"hi NonText guibg=NONE ctermbg=NONE
+"set background=dark
+
set foldmethod=marker
set conceallevel=2