add custom plugins
parent
1afb5a1227
commit
09208b20e5
@ -0,0 +1,6 @@
|
|||||||
|
return {
|
||||||
|
'zbirenbaum/copilot-cmp',
|
||||||
|
config = function()
|
||||||
|
require('copilot_cmp').setup()
|
||||||
|
end,
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
return {
|
||||||
|
'zbirenbaum/copilot.lua',
|
||||||
|
opts = {
|
||||||
|
suggestion = { enabled = false },
|
||||||
|
panel = { enabled = false },
|
||||||
|
},
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
if true then
|
||||||
|
return {}
|
||||||
|
end
|
||||||
|
-- https://github.com/ThePrimeagen/harpoon/tree/harpoon2 - this branch, follow before removing trueflag above
|
||||||
|
return {
|
||||||
|
'ThePrimeagen/harpoon',
|
||||||
|
branch = 'harpoon2',
|
||||||
|
dependencies = { { 'nvim-lua/plenary.nvim' } },
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
if true then
|
||||||
|
return {}
|
||||||
|
end
|
||||||
|
return {
|
||||||
|
'jayadamsmorgan/PklLanguageServer',
|
||||||
|
build = 'mv Editors/Neovim/pklls-nvim/* .',
|
||||||
|
config = function()
|
||||||
|
local capabilities = require('cmp_nvim_lsp').default_capabilities() -- if you are using nvim_cmp for completion
|
||||||
|
require('pklls-nvim.init').setup {
|
||||||
|
capabilities = capabilities, -- change or remove this
|
||||||
|
-- on_attach = custom_on_attach -- change or remove this
|
||||||
|
-- cmd = custom_path_to_pkl_lsp_server
|
||||||
|
}
|
||||||
|
end,
|
||||||
|
dependencies = {
|
||||||
|
'neovim/nvim-lspconfig',
|
||||||
|
},
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
return {
|
||||||
|
"https://github.com/apple/pkl-neovim",
|
||||||
|
lazy = true,
|
||||||
|
event = "BufReadPre *.pkl",
|
||||||
|
dependencies = {"nvim-treesitter/nvim-treesitter"},
|
||||||
|
build = function() vim.cmd("TSInstall! pkl") end,
|
||||||
|
}
|
@ -0,0 +1,3 @@
|
|||||||
|
return {
|
||||||
|
'ThePrimeagen/vim-be-good',
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
return {
|
||||||
|
"https://git.sr.ht/~swaits/zellij-nav.nvim",
|
||||||
|
lazy = true,
|
||||||
|
event = "VeryLazy",
|
||||||
|
keys = {
|
||||||
|
{
|
||||||
|
"<c-h>", "<cmd>ZellijNavigateLeft<cr>",
|
||||||
|
{silent = true, desc = "navigate left"}
|
||||||
|
}, {
|
||||||
|
"<c-j>", "<cmd>ZellijNavigateDown<cr>",
|
||||||
|
{silent = true, desc = "navigate down"}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"<c-k>", "<cmd>ZellijNavigateUp<cr>",
|
||||||
|
{silent = true, desc = "navigate up"}
|
||||||
|
}, {
|
||||||
|
"<c-l>", "<cmd>ZellijNavigateRight<cr>",
|
||||||
|
{silent = true, desc = "navigate right"}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
opts = {}
|
||||||
|
}
|
Loading…
Reference in New Issue