v1.0.0
This commit is contained in:
40
lua/plug/gui_colorscheme.lua
Normal file
40
lua/plug/gui_colorscheme.lua
Normal file
@ -0,0 +1,40 @@
|
||||
return {
|
||||
{
|
||||
"folke/tokyonight.nvim",
|
||||
config = function(_, opts)
|
||||
vim.cmd.colorscheme("tokyonight-night")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"loctvl842/monokai-pro.nvim",
|
||||
event = "VeryLazy",
|
||||
enabled = false,
|
||||
opts = {
|
||||
transparent_background = false,
|
||||
terminal_colors = true,
|
||||
devicons = true,
|
||||
filter = "machine",
|
||||
background_clear = {
|
||||
"float_win",
|
||||
"telescope",
|
||||
"renamer",
|
||||
"notify",
|
||||
"neo-tree",
|
||||
},
|
||||
plugins = {
|
||||
bufferline = {
|
||||
underline_selected = true,
|
||||
underline_visible = true,
|
||||
},
|
||||
indent_blankline = {
|
||||
context_highlight = "pro", -- default | pro
|
||||
context_start_underline = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
config = function(_, opts)
|
||||
require("monokai-pro").setup(opts)
|
||||
vim.cmd.colorscheme("monokai-pro")
|
||||
end,
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user