summary refs log tree commit diff
path: root/.config/nvim
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2016-07-26 00:23:49 -0400
committerJune McEnroe <june@causal.agency>2016-07-26 00:23:49 -0400
commit314981bfe2ba48224df153d7829356cc7441c5cd (patch)
treeb2d378ee9df9820d08e248ca1e786862a9f4ac2f /.config/nvim
parentAdd htoprc (diff)
downloadsrc-314981bfe2ba48224df153d7829356cc7441c5cd.tar.gz
src-314981bfe2ba48224df153d7829356cc7441c5cd.zip
Add ''subtle'' colorscheme
I'm just trying this out.
Diffstat (limited to '.config/nvim')
-rw-r--r--.config/nvim/colors/subtle.vim50
-rw-r--r--.config/nvim/init.vim11
2 files changed, 56 insertions, 5 deletions
diff --git a/.config/nvim/colors/subtle.vim b/.config/nvim/colors/subtle.vim
new file mode 100644
index 00000000..7894cf85
--- /dev/null
+++ b/.config/nvim/colors/subtle.vim
@@ -0,0 +1,50 @@
+let &t_Co = 16
+hi clear
+if exists('syntax_on')
+  syntax reset
+endif
+
+let colors_name = 'subtle'
+
+hi Normal ctermbg=NONE ctermfg=NONE
+
+hi ColorColumn ctermbg=Black
+hi EndOfBuffer ctermfg=DarkGray
+hi VertSplit cterm=NONE ctermbg=NONE ctermfg=DarkGray
+hi LineNr ctermfg=DarkGray
+hi MatchParen ctermbg=DarkGray ctermfg=White
+hi ModeMsg ctermfg=DarkGray
+hi NonText ctermfg=DarkGray
+hi StatusLine cterm=NONE ctermbg=Black ctermfg=LightGray
+hi StatusLineNC cterm=NONE ctermbg=Black ctermfg=DarkGray
+hi Visual ctermbg=DarkGray ctermfg=NONE
+
+hi Comment ctermfg=DarkYellow
+
+hi Constant ctermfg=NONE
+hi String ctermfg=LightBlue
+hi Character ctermfg=LightBlue
+
+hi Identifier cterm=NONE ctermfg=NONE
+
+hi Statement ctermfg=LightGray
+
+hi PreProc ctermfg=LightGray
+hi Macro ctermfg=LightMagenta
+hi PreCondit ctermfg=LightRed
+
+hi Type ctermfg=NONE
+hi StorageClass ctermfg=LightGray
+
+hi Special ctermfg=LightGray
+hi SpecialComment ctermfg=DarkYellow
+
+hi Underlined ctermfg=NONE
+
+hi Error ctermbg=NONE ctermfg=LightRed
+
+hi Todo ctermbg=NONE ctermfg=Yellow
+
+hi SpecialKey ctermfg=DarkGray
+
+hi link rustModPath Identifier
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
index a29fa15c..4abd42cb 100644
--- a/.config/nvim/init.vim
+++ b/.config/nvim/init.vim
@@ -19,11 +19,12 @@ map <ScrollWheelUp> <C-Y>
 map <ScrollWheelDown> <C-E>
 
 execute 'set background=' . ($ITERM_PROFILE != '' ? $ITERM_PROFILE : 'dark')
-let $NVIM_TUI_ENABLE_TRUE_COLOR = 1
-let g:gruvbox_contrast_dark = 'hard'
-let g:gruvbox_invert_selection = 0
-let g:gruvbox_vert_split = 'bg0'
-colorscheme gruvbox
+"let $NVIM_TUI_ENABLE_TRUE_COLOR = 1
+"let g:gruvbox_contrast_dark = 'hard'
+"let g:gruvbox_invert_selection = 0
+"let g:gruvbox_vert_split = 'bg0'
+"colorscheme gruvbox
+colorscheme subtle
 
 autocmd BufNewFile,BufRead *.asm,*.mac setf nasm
 
class='logheader'>2020-08-27contrib/palaver: Remove rc scriptJune McEnroe 2020-08-27contrib/palaver: Fix database search and creationJune McEnroe 2020-08-27contrib/palaver: Use pounce's XDG directoryJune McEnroe 2020-08-27contrib/palaver: Only allow HTTPSJune McEnroe 2020-08-25Support the pounce_env rc variableJune McEnroe 2020-08-25Remove deprecated option namesJune McEnroe The next release will be 2.0 so these can be removed now. 2020-08-25Document configuration and data file searchJune McEnroe 2020-08-24Use dataOpen for save fileJune McEnroe 2020-08-24Use configOpen to load localCAJune McEnroe 2020-08-24Use configPath to load client cert/privJune McEnroe 2020-08-24Use configOpen in getopt_configJune McEnroe 2020-08-24Import xdg.c from catgirlJune McEnroe 2020-08-23Replace “RAND_bytes” by “getentropy”Issam E. Maghni This removes the dependency on libcrypto. Signed-off-by: Issam E. Maghni <issam.e.maghni@mailbox.org> 2020-08-16contrib/palaver: Add no message preview flagsJune McEnroe 2020-08-13contrib/palaver: Don't set channel for PMsJune McEnroe 2020-08-13Fix unintended interception of NICK after registrationJune McEnroe Another bug caused by trying to support broken clients. I'm annoyed. 2020-08-12Add Additional Components section to READMEJune McEnroe 2020-08-12Document -L / palaver optionJune McEnroe 2020-08-11contrib/palaver: Document service configurationJune McEnroe 2020-08-11contrib/palaver: Add install target and rc scriptJune McEnroe 2020-08-11contrib/palaver: Implement command and notificationsJune McEnroe