config: nvim: use colorscheme dark_colorblind from github-nvim-theme
The currently used colorscheme 'vim-dichromatic' is missing support for various neovim plugins.
This commit is contained in:
parent
2b78050f5f
commit
ab5cceddab
3 changed files with 6 additions and 4 deletions
|
|
@ -35,8 +35,8 @@ return require('packer').startup({
|
||||||
-- Visuals
|
-- Visuals
|
||||||
--------------------
|
--------------------
|
||||||
use { -- colorblind-friendly colorscheme
|
use { -- colorblind-friendly colorscheme
|
||||||
'romainl/vim-dichromatic',
|
'projekt0n/github-nvim-theme',
|
||||||
config = function() vim.cmd('colorscheme dichromatic') end,
|
config = load_config('github-nvim-theme'),
|
||||||
}
|
}
|
||||||
use { -- color highlighter
|
use { -- color highlighter
|
||||||
'norcalli/nvim-colorizer.lua',
|
'norcalli/nvim-colorizer.lua',
|
||||||
|
|
|
||||||
4
config/nvim/lua/plugins/github-nvim-theme.lua
Normal file
4
config/nvim/lua/plugins/github-nvim-theme.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
require('github-theme').setup({
|
||||||
|
theme_style = 'dark_colorblind',
|
||||||
|
transparent = true,
|
||||||
|
})
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
vim.opt.completeopt = 'menu,menuone,noselect'
|
vim.opt.completeopt = 'menu,menuone,noselect'
|
||||||
-- make 'kind' readable with dichromatic colorscheme
|
|
||||||
vim.cmd('highlight! CmpItemKindDefault guibg=NONE guifg=#000000')
|
|
||||||
|
|
||||||
local cmp = require('cmp')
|
local cmp = require('cmp')
|
||||||
cmp.setup({
|
cmp.setup({
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue