diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-11 22:42:47 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-11 22:42:47 +0100 |
commit | 22cd384b2d9613e70689fd1d640fa1b6d9a78590 (patch) | |
tree | 17c521420c1bd92a50fba839b2bd7a21ee4a15d7 /.config/nvim/themes | |
parent | de66f966e5c1f7c4f46fab8fe90e29f5f7715fde (diff) |
tried to remove stupid bold font
Diffstat (limited to '.config/nvim/themes')
-rw-r--r-- | .config/nvim/themes/githubsy.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/nvim/themes/githubsy.vim b/.config/nvim/themes/githubsy.vim index 15445bf..f4cf775 100644 --- a/.config/nvim/themes/githubsy.vim +++ b/.config/nvim/themes/githubsy.vim @@ -1,12 +1,12 @@ " Prevents the colorscheme from loading a custom bg color. -autocmd ColorScheme * highlight Normal ctermbg=NONE guibg=NONE - - -syntax on +autocmd ColorScheme * highlight Normal ctermbg=NONE guibg=NONE +" syntax on colorscheme githubsy + " checks if your terminal has 24-bit color support if (has("termguicolors")) set termguicolors + set t_Co=256 hi LineNr ctermbg=NONE guibg=NONE endif |