migrate to dotter
This commit is contained in:
parent
c5618f2f2c
commit
23b6c0a596
265 changed files with 62 additions and 3125 deletions
29
configs/nvim/lua/aleidk/plugins/init.lua
Normal file
29
configs/nvim/lua/aleidk/plugins/init.lua
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
return {
|
||||
'neovim/nvim-lspconfig',
|
||||
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
|
||||
{
|
||||
"mason-org/mason.nvim",
|
||||
opts = {}
|
||||
},
|
||||
{
|
||||
"ckolkey/ts-node-action",
|
||||
dependencies = { "nvim-treesitter" },
|
||||
opts = {},
|
||||
keys = {
|
||||
{ "<leader>ls", function() require("ts-node-action").node_action() end, desc = "Node Action" }
|
||||
}
|
||||
},
|
||||
{
|
||||
-- allow to reuse the same nvim instance when opening files in the same terminal context
|
||||
"willothy/flatten.nvim",
|
||||
opts = {
|
||||
integrations = {
|
||||
kitty = true,
|
||||
wezterm = false,
|
||||
},
|
||||
},
|
||||
-- Ensure that it runs first to minimize delay when opening file from terminal
|
||||
lazy = false,
|
||||
priority = 1001,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue