diff --git a/lua/plugins/colorschemes.lua b/lua/plugins/colorschemes.lua new file mode 100644 index 0000000..277fdd5 --- /dev/null +++ b/lua/plugins/colorschemes.lua @@ -0,0 +1,7 @@ +-- lua/plugins/colorschemes.lua +return { + "folke/tokyonight.nvim", + lazy = false, + priority = 1000, + opts = {} +} diff --git a/old/lua/plugins/harpoon.lua b/lua/plugins/harpoon.lua similarity index 100% rename from old/lua/plugins/harpoon.lua rename to lua/plugins/harpoon.lua diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua new file mode 100644 index 0000000..97b53e1 --- /dev/null +++ b/lua/plugins/treesitter.lua @@ -0,0 +1,5 @@ +return { + { "nvim-lua/plenary.nvim" }, + { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" }, + { "nvim-telescope/telescope.nvim", tag = "0.1.5" }, +} diff --git a/lua/user/plugins.lua b/lua/user/plugins.lua index 3fa7563..b897e0d 100644 --- a/lua/user/plugins.lua +++ b/lua/user/plugins.lua @@ -8,10 +8,12 @@ if not vim.loop.fs_stat(lazypath) then end vim.opt.rtp:prepend(lazypath) -require("lazy").setup({ - { "nvim-lua/plenary.nvim" }, - { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" }, - { "nvim-telescope/telescope.nvim", tag = "0.1.5" }, - { "catppuccin/nvim", name = "catppuccin" }, - { "folke/tokyonight.nvim", lazy = false, priority = 1000, opts = {}, } -}) +-- require("lazy").setup({ +-- { "nvim-lua/plenary.nvim" }, +-- { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" }, +-- { "nvim-telescope/telescope.nvim", tag = "0.1.5" }, +-- { "catppuccin/nvim", name = "catppuccin" }, +-- { "folke/tokyonight.nvim", lazy = false, priority = 1000, opts = {}, } +-- }) + +require('lazy').setup('plugins') -- lua/plugins/*