✨ feat(nvim): new extras: blink and fzf-lua extended
nvim-cmp and telescope are now longer the default plugins for lazyvim
This commit is contained in:
parent
b7eb46e0cf
commit
fd95d5fd4a
3 changed files with 40 additions and 5 deletions
|
@ -8,6 +8,7 @@
|
|||
"plugins.extras.coding.ai.codecompanion",
|
||||
"plugins.extras.coding.ai.codeium",
|
||||
"plugins.extras.coding.annotation",
|
||||
"plugins.extras.coding.blink-extended",
|
||||
"plugins.extras.coding.multicursor",
|
||||
"plugins.extras.coding.recorder",
|
||||
"plugins.extras.coding.refactoring",
|
||||
|
@ -23,6 +24,7 @@
|
|||
"plugins.extras.editor.docs.devdocs",
|
||||
"plugins.extras.editor.docs.obsidian",
|
||||
"plugins.extras.editor.flash-extended",
|
||||
"plugins.extras.editor.fzf.fzf-extended",
|
||||
"plugins.extras.editor.git.diffview",
|
||||
"plugins.extras.editor.gitsigns-extended",
|
||||
"plugins.extras.editor.marks.grapple",
|
||||
|
@ -30,9 +32,6 @@
|
|||
"plugins.extras.editor.package-info",
|
||||
"plugins.extras.editor.search-replace",
|
||||
"plugins.extras.editor.suda",
|
||||
"plugins.extras.editor.telescope.lazy",
|
||||
"plugins.extras.editor.telescope.undotree",
|
||||
"plugins.extras.editor.telescope.zoxide",
|
||||
"plugins.extras.editor.trouble-extended",
|
||||
"plugins.extras.formatting.prettier-extended",
|
||||
"plugins.extras.formatting.trim_newlines",
|
||||
|
@ -45,10 +44,8 @@
|
|||
"plugins.extras.lang.web.typescript-extended",
|
||||
"plugins.extras.lang.yaml-extended",
|
||||
"plugins.extras.linting.eslint-extended",
|
||||
"plugins.extras.lsp.actions-preview",
|
||||
"plugins.extras.lsp.file-operations",
|
||||
"plugins.extras.lsp.garbage-day",
|
||||
"plugins.extras.lsp.glance",
|
||||
"plugins.extras.lsp.lens",
|
||||
"plugins.extras.lsp.lspconfig-extended",
|
||||
"plugins.extras.lsp.mason-extended",
|
||||
|
|
20
.config/nvim/lua/plugins/extras/coding/blink-extended.lua
Normal file
20
.config/nvim/lua/plugins/extras/coding/blink-extended.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
return {
|
||||
"saghen/blink.cmp",
|
||||
opts = {
|
||||
keymap = {
|
||||
["<C-k>"] = { "select_prev", "fallback" },
|
||||
["<C-j>"] = { "select_next", "fallback" },
|
||||
},
|
||||
completion = {
|
||||
menu = {
|
||||
border = "rounded",
|
||||
winhighlight = "Normal:BlinkCmpDoc,FloatBorder:BlinkCmpDocBorder,CursorLine:BlinkCmpDocCursorLine,Search:None",
|
||||
},
|
||||
documentation = {
|
||||
window = {
|
||||
border = "rounded",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
18
.config/nvim/lua/plugins/extras/editor/fzf/fzf-extended.lua
Normal file
18
.config/nvim/lua/plugins/extras/editor/fzf/fzf-extended.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
return {
|
||||
{ import = "lazyvim.plugins.extras.editor.fzf" },
|
||||
{
|
||||
"ibhagwan/fzf-lua",
|
||||
opts = {
|
||||
previewers = {
|
||||
builtin = {
|
||||
syntax_limit_b = 1024 * 100, -- 100KB
|
||||
},
|
||||
},
|
||||
},
|
||||
keys = {
|
||||
{ "<leader>sA", "<cmd>FzfLua treesitter<cr>", desc = "Treesiter Symbols" },
|
||||
{ "<leader>gr", "<cmd>FzfLua git_branches<cr>", desc = "Branches" },
|
||||
{ "<leader>S", "<cmd>FzfLua spell_suggest<cr>", desc = "Spelling" },
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Add table
Reference in a new issue