nvim: Remove navigator.lua
This commit is contained in:
parent
e94eade3b3
commit
72e7832dce
1 changed files with 26 additions and 22 deletions
|
@ -11,9 +11,7 @@ return {
|
||||||
{ 'vifm/vifm.vim' }, -- integrate file manager
|
{ 'vifm/vifm.vim' }, -- integrate file manager
|
||||||
{
|
{
|
||||||
'lewis6991/gitsigns.nvim', -- show vcs changes on left-hand gutter
|
'lewis6991/gitsigns.nvim', -- show vcs changes on left-hand gutter
|
||||||
opts = {
|
opts = { numhl = true, signcolumn = false },
|
||||||
numhl = true, signcolumn = false
|
|
||||||
},
|
|
||||||
event = "BufRead"
|
event = "BufRead"
|
||||||
}, {
|
}, {
|
||||||
'norcalli/nvim-colorizer.lua', -- color hex, named colors in the correct preview scheme
|
'norcalli/nvim-colorizer.lua', -- color hex, named colors in the correct preview scheme
|
||||||
|
@ -88,7 +86,7 @@ return {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
ft = writing_ft
|
ft = "quarto"
|
||||||
}, { 'micarmst/vim-spellsync', event = "VeryLazy" }, -- personal dict improvements for git sync
|
}, { 'micarmst/vim-spellsync', event = "VeryLazy" }, -- personal dict improvements for git sync
|
||||||
{ 'folke/zen-mode.nvim', config = true, event = "VeryLazy" }, -- provide distraction free writing
|
{ 'folke/zen-mode.nvim', config = true, event = "VeryLazy" }, -- provide distraction free writing
|
||||||
{ 'folke/twilight.nvim', event = "VeryLazy" }, -- provide even distraction free-er writing (lowlight paragraphs)
|
{ 'folke/twilight.nvim', event = "VeryLazy" }, -- provide even distraction free-er writing (lowlight paragraphs)
|
||||||
|
@ -116,8 +114,7 @@ return {
|
||||||
config = function() require('plug._mini') end
|
config = function() require('plug._mini') end
|
||||||
}, {
|
}, {
|
||||||
"akinsho/nvim-toggleterm.lua", -- simpler, programmable and multiple terminal toggling for nvim
|
"akinsho/nvim-toggleterm.lua", -- simpler, programmable and multiple terminal toggling for nvim
|
||||||
config = function() require('plug._toggleterm') end,
|
config = function() require('plug._toggleterm') end
|
||||||
event = "BufWinEnter"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"folke/which-key.nvim",
|
"folke/which-key.nvim",
|
||||||
|
@ -127,6 +124,14 @@ return {
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
dependencies = { "nvim-lua/popup.nvim", "nvim-lua/plenary.nvim" },
|
dependencies = { "nvim-lua/popup.nvim", "nvim-lua/plenary.nvim" },
|
||||||
config = function() require('plug._telescope') end
|
config = function() require('plug._telescope') end
|
||||||
|
}, {
|
||||||
|
"dense-analysis/neural",
|
||||||
|
dependencies = { "MunifTanjim/nui.nvim", "elpiloto/significant.nvim" },
|
||||||
|
config = function()
|
||||||
|
require('neural').setup({
|
||||||
|
source = { openai = { api_key = vim.env.OPENAI_API_KEY } }
|
||||||
|
})
|
||||||
|
end
|
||||||
}, -- treesitter
|
}, -- treesitter
|
||||||
{
|
{
|
||||||
'nvim-treesitter/nvim-treesitter',
|
'nvim-treesitter/nvim-treesitter',
|
||||||
|
@ -159,24 +164,23 @@ return {
|
||||||
"VonHeikemen/lsp-zero.nvim",
|
"VonHeikemen/lsp-zero.nvim",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"neovim/nvim-lspconfig", "williamboman/mason.nvim",
|
"neovim/nvim-lspconfig", "williamboman/mason.nvim",
|
||||||
"williamboman/mason-lspconfig.nvim", "hrsh7th/nvim-cmp",
|
"williamboman/mason-lspconfig.nvim", {
|
||||||
"hrsh7th/cmp-buffer", "hrsh7th/cmp-path",
|
"hrsh7th/nvim-cmp",
|
||||||
"saadparwaiz1/cmp_luasnip", "hrsh7th/cmp-nvim-lsp",
|
dependencies = {
|
||||||
"hrsh7th/cmp-nvim-lua", "L3MON4D3/LuaSnip",
|
"hrsh7th/cmp-buffer", "hrsh7th/cmp-path",
|
||||||
"rafamadriz/friendly-snippets", "andersevenrud/cmp-tmux",
|
"saadparwaiz1/cmp_luasnip", "hrsh7th/cmp-nvim-lsp",
|
||||||
"hrsh7th/cmp-nvim-lsp", "kdheepak/cmp-latex-symbols",
|
"hrsh7th/cmp-nvim-lua", "andersevenrud/cmp-tmux",
|
||||||
"ray-x/cmp-treesitter", "f3fora/cmp-spell", "hrsh7th/cmp-cmdline",
|
"hrsh7th/cmp-nvim-lsp", "kdheepak/cmp-latex-symbols",
|
||||||
"cbarrete/completion-vcard", "jc-doyle/cmp-pandoc-references",
|
"ray-x/cmp-treesitter", "f3fora/cmp-spell",
|
||||||
|
"hrsh7th/cmp-cmdline", "cbarrete/completion-vcard",
|
||||||
|
"jc-doyle/cmp-pandoc-references"
|
||||||
|
}
|
||||||
|
}, "L3MON4D3/LuaSnip", "rafamadriz/friendly-snippets",
|
||||||
{ "lukas-reineke/lsp-format.nvim", config = true }
|
{ "lukas-reineke/lsp-format.nvim", config = true }
|
||||||
},
|
},
|
||||||
config = function() require('plug._cmp') end
|
config = function() require('plug._lsp') end
|
||||||
}, { 'simrat39/symbols-outline.nvim', config = true, event = "VeryLazy" }, -- vista-like outline view for code
|
}, { 'simrat39/symbols-outline.nvim', config = true, event = "VeryLazy" }, -- vista-like outline view for code
|
||||||
{ 'ray-x/lsp_signature.nvim', event = "VeryLazy" },
|
{ 'ray-x/lsp_signature.nvim', config = true }
|
||||||
{ 'ray-x/guihua.lua', build = 'cd lua/fzy && make', event = "VeryLazy" }, {
|
|
||||||
'ray-x/navigator.lua',
|
|
||||||
config = function() require('plug._lsp') end,
|
|
||||||
event = "VeryLazy"
|
|
||||||
} -- and completion
|
|
||||||
-- { -- REQUIRES custom `yay -S --asdeps lua51-lyaml invocation` AND is suuper slow
|
-- { -- REQUIRES custom `yay -S --asdeps lua51-lyaml invocation` AND is suuper slow
|
||||||
-- "jghauser/papis.nvim",
|
-- "jghauser/papis.nvim",
|
||||||
-- after = { "telescope.nvim", "nvim-cmp" },
|
-- after = { "telescope.nvim", "nvim-cmp" },
|
||||||
|
|
Loading…
Reference in a new issue