feat: move plugin install definitions to their dirs.
This commit is contained in:
parent
013cdcb45e
commit
b57dc94d3a
5 changed files with 14 additions and 6 deletions
|
|
@ -1,10 +1,4 @@
|
|||
vim.pack.add({
|
||||
-- Colorscheme
|
||||
{ src = "https://github.com/ellisonleao/gruvbox.nvim" },
|
||||
-- Treesitter parsers
|
||||
{ src = "https://github.com/nvim-treesitter/nvim-treesitter" },
|
||||
-- Preconfigured lsp's
|
||||
{ src = "https://github.com/neovim/nvim-lspconfig" },
|
||||
-- Amazing neovim bundle of plugins that are super nice
|
||||
{ src = "https://github.com/nvim-mini/mini.nvim" },
|
||||
})
|
||||
|
|
|
|||
|
|
@ -1,2 +1,5 @@
|
|||
vim.pack.add({
|
||||
{ src = "https://github.com/ellisonleao/gruvbox.nvim" },
|
||||
})
|
||||
vim.o.background = "dark"
|
||||
vim.cmd([[colorscheme gruvbox]])
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
vim.pack.add({
|
||||
{ src = "https://github.com/folke/lazydev.nvim" }
|
||||
})
|
||||
|
||||
-- Enable some settings globally
|
||||
vim.lsp.config("*", {
|
||||
-- allow for multiline token support
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
vim.pack.add({
|
||||
{ src = "https://github.com/nvim-mini/mini.nvim" },
|
||||
})
|
||||
|
||||
-- setup picker with icons
|
||||
require("mini.icons").setup()
|
||||
require("mini.pick").setup({
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
vim.pack.add({
|
||||
{ src = "https://github.com/nvim-treesitter/nvim-treesitter" },
|
||||
})
|
||||
---@diagnostic disable: missing-fields
|
||||
require("nvim-treesitter.configs").setup({
|
||||
ensure_installed = { "go", "nix" },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue