diff options
Diffstat (limited to 'dot-config/nvim/plugin')
| -rw-r--r-- | dot-config/nvim/plugin/colorscheme.lua | 9 | ||||
| -rw-r--r-- | dot-config/nvim/plugin/lualine.lua | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/dot-config/nvim/plugin/colorscheme.lua b/dot-config/nvim/plugin/colorscheme.lua index 2539956..48ca70b 100644 --- a/dot-config/nvim/plugin/colorscheme.lua +++ b/dot-config/nvim/plugin/colorscheme.lua @@ -1,6 +1,7 @@ vim.pack.add({ "https://github.com/sainnhe/sonokai", "https://github.com/WTFox/jellybeans.nvim", + "https://github.com/projekt0n/github-nvim-theme", }) vim.g.sonokai_transparent_background = 2 @@ -13,4 +14,10 @@ require("jellybeans").setup({ flat_ui = true, -- toggles "flat UI" for pickers }) -vim.cmd("colorscheme jellybeans") +require("github-theme").setup({ + options = { + transparent = true, + }, +}) + +vim.cmd("colorscheme github_dark_high_contrast") diff --git a/dot-config/nvim/plugin/lualine.lua b/dot-config/nvim/plugin/lualine.lua index b605786..79e3805 100644 --- a/dot-config/nvim/plugin/lualine.lua +++ b/dot-config/nvim/plugin/lualine.lua @@ -4,10 +4,13 @@ vim.pack.add({ local wc = require("wordcount") +local theme = require("my-lualine-theme") + require("lualine").setup({ options = { component_separators = "", section_separators = "", + theme = theme, }, sections = { lualine_y = { |
