FIX: Restructured nvim plugins. moved the configuration for each plugin through Lazy in seperate files.
This commit is contained in:
18
lua/barink/plugins/tokyonight.lua
Normal file
18
lua/barink/plugins/tokyonight.lua
Normal file
@@ -0,0 +1,18 @@
|
||||
return {
|
||||
"folke/tokyonight.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
config = function()
|
||||
require("tokyonight").setup({
|
||||
style = "night",
|
||||
light_style = "day",
|
||||
transparent = true,
|
||||
terminal_colors = true,
|
||||
dim_inactive = false,
|
||||
lualine_bold = false,
|
||||
})
|
||||
|
||||
vim.cmd [[colorscheme tokyonight]]
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user