summaryrefslogtreecommitdiff
path: root/.config/nvim
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-03-11 22:42:47 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-03-11 22:42:47 +0100
commit22cd384b2d9613e70689fd1d640fa1b6d9a78590 (patch)
tree17c521420c1bd92a50fba839b2bd7a21ee4a15d7 /.config/nvim
parentde66f966e5c1f7c4f46fab8fe90e29f5f7715fde (diff)
tried to remove stupid bold font
Diffstat (limited to '.config/nvim')
-rw-r--r--.config/nvim/general/settings.vim2
-rw-r--r--.config/nvim/themes/githubsy.vim8
-rw-r--r--.config/nvim/vim-plug/plugins.vim3
3 files changed, 6 insertions, 7 deletions
diff --git a/.config/nvim/general/settings.vim b/.config/nvim/general/settings.vim
index eedbbb1..08a5ae0 100644
--- a/.config/nvim/general/settings.vim
+++ b/.config/nvim/general/settings.vim
@@ -1,7 +1,7 @@
" set leader key
let g:mapleader = "\<Space>"
-syntax enable " Enables syntax highlighing
+" syntax enable " Enables syntax highlighing
set hidden " Required to keep multiple buffers open multiple buffers
set nowrap " Display long lines as just one line
set encoding=utf-8 " The encoding displayed
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
diff --git a/.config/nvim/vim-plug/plugins.vim b/.config/nvim/vim-plug/plugins.vim
index 971f1a5..5bd5c16 100644
--- a/.config/nvim/vim-plug/plugins.vim
+++ b/.config/nvim/vim-plug/plugins.vim
@@ -26,8 +26,7 @@ call plug#begin('~/.config/nvim/autoload/plugged')
Plug 'richtan/pywal.vim'
Plug 'arcticicestudio/nord-vim'
Plug 'chriskempson/base16-vim'
- Plug 'synul/githubsy'
-
+ Plug 'aktersnurra/githubsy.vim'
" Color hex codes
Plug 'ap/vim-css-color'