diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index 1f0a698..badad52 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -35,8 +35,8 @@ return require('packer').startup({ -- Visuals -------------------- use { -- colorblind-friendly colorscheme - 'romainl/vim-dichromatic', - config = function() vim.cmd('colorscheme dichromatic') end, + 'projekt0n/github-nvim-theme', + config = load_config('github-nvim-theme'), } use { -- color highlighter 'norcalli/nvim-colorizer.lua', diff --git a/config/nvim/lua/plugins/github-nvim-theme.lua b/config/nvim/lua/plugins/github-nvim-theme.lua new file mode 100644 index 0000000..4aedc02 --- /dev/null +++ b/config/nvim/lua/plugins/github-nvim-theme.lua @@ -0,0 +1,4 @@ +require('github-theme').setup({ + theme_style = 'dark_colorblind', + transparent = true, +}) diff --git a/config/nvim/lua/plugins/nvim-cmp.lua b/config/nvim/lua/plugins/nvim-cmp.lua index b4b5ef4..c2ff668 100644 --- a/config/nvim/lua/plugins/nvim-cmp.lua +++ b/config/nvim/lua/plugins/nvim-cmp.lua @@ -1,6 +1,4 @@ vim.opt.completeopt = 'menu,menuone,noselect' --- make 'kind' readable with dichromatic colorscheme -vim.cmd('highlight! CmpItemKindDefault guibg=NONE guifg=#000000') local cmp = require('cmp') cmp.setup({