disable more plugins
This commit is contained in:
parent
53927c893d
commit
d4ce269b03
12 changed files with 183 additions and 195 deletions
|
|
@ -1,15 +1,16 @@
|
|||
if true then
|
||||
return {}
|
||||
end
|
||||
return {
|
||||
'zbirenbaum/copilot-cmp',
|
||||
config = function()
|
||||
require('copilot_cmp').setup()
|
||||
end,
|
||||
opts = {
|
||||
filetypes = {
|
||||
['.'] = false,
|
||||
go = true,
|
||||
else
|
||||
return {
|
||||
'zbirenbaum/copilot-cmp',
|
||||
config = function()
|
||||
require('copilot_cmp').setup()
|
||||
end,
|
||||
opts = {
|
||||
filetypes = {
|
||||
['.'] = false,
|
||||
go = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,14 +1,15 @@
|
|||
if true then
|
||||
return {}
|
||||
end
|
||||
return {
|
||||
'zbirenbaum/copilot.lua',
|
||||
opts = {
|
||||
suggestion = { enabled = false },
|
||||
panel = { enabled = false },
|
||||
filetypes = {
|
||||
['.'] = false,
|
||||
go = true,
|
||||
else
|
||||
return {
|
||||
'zbirenbaum/copilot.lua',
|
||||
opts = {
|
||||
suggestion = { enabled = false },
|
||||
panel = { enabled = false },
|
||||
filetypes = {
|
||||
['.'] = false,
|
||||
go = true,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,9 +1,10 @@
|
|||
if true then
|
||||
return {}
|
||||
else
|
||||
-- https://github.com/ThePrimeagen/harpoon/tree/harpoon2 - this branch, follow before removing trueflag above
|
||||
return {
|
||||
'ThePrimeagen/harpoon',
|
||||
branch = 'harpoon2',
|
||||
dependencies = { { 'nvim-lua/plenary.nvim' } },
|
||||
}
|
||||
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' } },
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,17 +0,0 @@
|
|||
if true then
|
||||
return {}
|
||||
else
|
||||
return {
|
||||
'echasnovski/mini.nvim',
|
||||
version = false,
|
||||
-- require('mini.ai').setup(),
|
||||
-- require('mini.operators').setup(),
|
||||
-- require('mini.surround').setup(),
|
||||
-- require('mini.bracketed').setup(),
|
||||
-- require('mini.files').setup(),
|
||||
-- require('mini.pick').setup(),
|
||||
-- -- require('mini.hues').setup(),
|
||||
-- require('mini.icons').setup(),
|
||||
-- require('mini.statusline').setup(),
|
||||
}
|
||||
end
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
if true then
|
||||
return
|
||||
return {}
|
||||
else
|
||||
return {
|
||||
'epwalsh/obsidian.nvim',
|
||||
|
|
|
|||
|
|
@ -1,18 +1,19 @@
|
|||
if true then
|
||||
return {}
|
||||
else
|
||||
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',
|
||||
},
|
||||
}
|
||||
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',
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
if true then
|
||||
return {}
|
||||
else
|
||||
return {
|
||||
'https://github.com/apple/pkl-neovim',
|
||||
lazy = true,
|
||||
event = 'BufReadPre *.pkl',
|
||||
dependencies = { 'nvim-treesitter/nvim-treesitter' },
|
||||
build = function()
|
||||
vim.cmd 'TSInstall! pkl'
|
||||
end,
|
||||
}
|
||||
end
|
||||
return {
|
||||
'https://github.com/apple/pkl-neovim',
|
||||
lazy = true,
|
||||
event = 'BufReadPre *.pkl',
|
||||
dependencies = { 'nvim-treesitter/nvim-treesitter' },
|
||||
build = function()
|
||||
vim.cmd 'TSInstall! pkl'
|
||||
end,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
if true then
|
||||
return
|
||||
return {}
|
||||
else
|
||||
return {
|
||||
'folke/snacks.nvim',
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
if true then
|
||||
return
|
||||
return {}
|
||||
else
|
||||
return {
|
||||
'xiyaowong/transparent.nvim',
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
if true then
|
||||
return
|
||||
return {}
|
||||
else
|
||||
return {
|
||||
'ThePrimeagen/vim-be-good',
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
if true then
|
||||
return
|
||||
return {}
|
||||
else
|
||||
return {
|
||||
'https://git.sr.ht/~swaits/zellij-nav.nvim',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue