mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 05:51:04 +00:00
Install harpoon
This commit is contained in:
parent
5151aeecbc
commit
295227b8f8
4 changed files with 21 additions and 7 deletions
7
lua/plugins/colorschemes.lua
Normal file
7
lua/plugins/colorschemes.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
-- lua/plugins/colorschemes.lua
|
||||||
|
return {
|
||||||
|
"folke/tokyonight.nvim",
|
||||||
|
lazy = false,
|
||||||
|
priority = 1000,
|
||||||
|
opts = {}
|
||||||
|
}
|
||||||
5
lua/plugins/treesitter.lua
Normal file
5
lua/plugins/treesitter.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
return {
|
||||||
|
{ "nvim-lua/plenary.nvim" },
|
||||||
|
{ "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" },
|
||||||
|
{ "nvim-telescope/telescope.nvim", tag = "0.1.5" },
|
||||||
|
}
|
||||||
|
|
@ -8,10 +8,12 @@ if not vim.loop.fs_stat(lazypath) then
|
||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
require("lazy").setup({
|
-- require("lazy").setup({
|
||||||
{ "nvim-lua/plenary.nvim" },
|
-- { "nvim-lua/plenary.nvim" },
|
||||||
{ "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" },
|
-- { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate" },
|
||||||
{ "nvim-telescope/telescope.nvim", tag = "0.1.5" },
|
-- { "nvim-telescope/telescope.nvim", tag = "0.1.5" },
|
||||||
{ "catppuccin/nvim", name = "catppuccin" },
|
-- { "catppuccin/nvim", name = "catppuccin" },
|
||||||
{ "folke/tokyonight.nvim", lazy = false, priority = 1000, opts = {}, }
|
-- { "folke/tokyonight.nvim", lazy = false, priority = 1000, opts = {}, }
|
||||||
})
|
-- })
|
||||||
|
|
||||||
|
require('lazy').setup('plugins') -- lua/plugins/*
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue