Initial Commit
This commit is contained in:
commit
bcb5556f7c
10 changed files with 166 additions and 0 deletions
7
lua/plugins/lsp.lua
Normal file
7
lua/plugins/lsp.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
return {
|
||||
"neovim/nvim-lspconfig",
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
build = ":TSUpdate",
|
||||
},
|
||||
}
|
||||
9
lua/plugins/snacks.lua
Normal file
9
lua/plugins/snacks.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
"folke/snacks.nvim",
|
||||
priority = 1000,
|
||||
opts = {
|
||||
picker = {},
|
||||
explorer = {},
|
||||
toggle = {},
|
||||
},
|
||||
}
|
||||
21
lua/plugins/theme.lua
Normal file
21
lua/plugins/theme.lua
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
return {
|
||||
{
|
||||
"marko-cerovac/material.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.g.material_style = "darker"
|
||||
end,
|
||||
},
|
||||
{
|
||||
"folke/tokyonight.nvim",
|
||||
lazy = true,
|
||||
opts = { style = "moon" },
|
||||
},
|
||||
{
|
||||
"dupeiran001/nord.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
opts = {},
|
||||
},
|
||||
}
|
||||
16
lua/plugins/ui.lua
Normal file
16
lua/plugins/ui.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
{
|
||||
"folke/which-key.nvim",
|
||||
event = "VeryLazy",
|
||||
},
|
||||
{
|
||||
"echasnovski/mini.icons",
|
||||
version = "*",
|
||||
init = function()
|
||||
package.preload["nvim-web-devicons"] = function()
|
||||
require("mini.icons").mock_nvim_web_devicons()
|
||||
return package.loaded["nvim-web-devicons"]
|
||||
end
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue