diff --git a/files/system/etc/skel/.config/nvim/lua/config/lazy.lua b/files/system/etc/skel/.config/nvim/lua/config/lazy.lua index 9cc363d..665d5f4 100644 --- a/files/system/etc/skel/.config/nvim/lua/config/lazy.lua +++ b/files/system/etc/skel/.config/nvim/lua/config/lazy.lua @@ -24,11 +24,24 @@ vim.g.maplocalleader = "\\" -- Setup lazy.nvim require("lazy").setup({ spec = { + { "LazyVim/LazyVim", import = "lazyvim.plugins"}, -- import your plugins { import = "plugins" }, }, - -- Configure any other settings here. See the documentation for more details. - -- colorscheme that will be used when installing plugins. -- automatically check for plugin updates - checker = { enabled = true }, + checker = { + enabled = true, + notify = false, + }, + performance = { + rtp = { + disabled_plugins = { + "gzip", + "tarPlugin", + "tohtml", + "tutor", + "zipPlugin", + } + } + } }) diff --git a/files/system/etc/skel/.config/nvim/lua/plugins/colorscheme.lua b/files/system/etc/skel/.config/nvim/lua/plugins/colorscheme.lua new file mode 100644 index 0000000..8d47bd0 --- /dev/null +++ b/files/system/etc/skel/.config/nvim/lua/plugins/colorscheme.lua @@ -0,0 +1,17 @@ +return { + "folke/tokyonight.nvim", + lazy = false, + priority = 1000, + opts = { + style = "night", + on_highlights = function(h1) + h1.LineNrAbove = { + fg = "#6ab8ff", + } + h1.LineNrBelow = { + fg = "#ff6188" + } + end, + on_colors = function() end, + }, +} \ No newline at end of file diff --git a/files/system/etc/skel/.config/nvim/lua/plugins/init.lua b/files/system/etc/skel/.config/nvim/lua/plugins/init.lua deleted file mode 100644 index 22dd1a7..0000000 --- a/files/system/etc/skel/.config/nvim/lua/plugins/init.lua +++ /dev/null @@ -1,24 +0,0 @@ -return { - { - "LazyVim/LazyVim", - import = "lazyvim.plugins", - opts = { - colorscheme = function() - local tokyonight = require("tokyonight") - tokyonight.setup({ - style = "night", - on_highlights = function(hl) - hl.LineNrAbove = { - fg = "#6ab8ff", - } - hl.LineNrBelow = { - fg = "#ff6188", - } - end, - on_colors = function() end, - }) - tokyonight.load() - end, - }, - }, -}