update
This commit is contained in:
parent
1be8014415
commit
8f3b85b519
1
init.lua
1
init.lua
|
@ -1095,7 +1095,6 @@ require('lazy').setup({
|
||||||
'javascript',
|
'javascript',
|
||||||
-- 'ts_ls',
|
-- 'ts_ls',
|
||||||
'nu',
|
'nu',
|
||||||
-- 'nix',
|
|
||||||
'css',
|
'css',
|
||||||
'json',
|
'json',
|
||||||
'comment',
|
'comment',
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
'MagicDuck/grug-far.nvim',
|
'MagicDuck/grug-far.nvim',
|
||||||
|
init = function()
|
||||||
|
-- vim.g.copilot_enabled = false
|
||||||
|
vim.keymap.set('n', '<leader>g', ':GrugFar<CR>')
|
||||||
|
end,
|
||||||
config = function()
|
config = function()
|
||||||
require('grug-far').setup {
|
require('grug-far').setup {
|
||||||
-- options, see Configuration section below
|
-- options, see Configuration section below
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
return {
|
|
||||||
-- {
|
|
||||||
-- 'folke/noice.nvim',
|
|
||||||
-- event = 'VeryLazy',
|
|
||||||
-- opts = {
|
|
||||||
-- -- add any options here
|
|
||||||
-- cmdline = {
|
|
||||||
-- -- view = 'cmdline',
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
-- dependencies = {
|
|
||||||
-- -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries
|
|
||||||
-- 'MunifTanjim/nui.nvim',
|
|
||||||
-- -- OPTIONAL:
|
|
||||||
-- -- `nvim-notify` is only needed, if you want to use the notification view.
|
|
||||||
-- -- If not available, we use `mini` as the fallback
|
|
||||||
-- -- 'rcarriga/nvim-notify',
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
return {
|
|
||||||
{
|
|
||||||
'stevearc/aerial.nvim',
|
|
||||||
opts = {
|
|
||||||
-- open_automatic = true,
|
|
||||||
},
|
|
||||||
-- Optional dependencies
|
|
||||||
dependencies = {
|
|
||||||
'nvim-treesitter/nvim-treesitter',
|
|
||||||
'nvim-tree/nvim-web-devicons',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
return {
|
||||||
|
-- {
|
||||||
|
-- "kevinhwang91/nvim-bqf",
|
||||||
|
-- lazy = false,
|
||||||
|
-- },
|
||||||
|
{
|
||||||
|
'tpope/vim-unimpaired',
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue