1
0

FIX: Restructured nvim plugins. moved the configuration for each plugin through Lazy in seperate files.

This commit is contained in:
2024-03-26 12:51:53 +01:00
parent a1ef89b3c9
commit b844031323
13 changed files with 185 additions and 189 deletions

View 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
}