diff options
author | zachir <zachir@librem.one> | 2024-06-04 23:21:10 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2024-06-04 23:23:21 -0500 |
commit | fa42672400b9b668a77b649843456af310fc21d3 (patch) | |
tree | dcf64fa9fde6a67b179411fd8b625605519deadb | |
parent | ac384234fdb81c7d923ce341a0c24ccbe0583db9 (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.
-rw-r--r-- | nvim/init.vim | 6 |
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 |