nvim: switch to fzf rather than telescope
This commit is contained in:
parent
ee67adaf8e
commit
7df2de8159
|
@ -21,6 +21,7 @@ require("lazy").setup({
|
||||||
-- { import = "lazyvim.plugins.extras.coding.neogen" },
|
-- { import = "lazyvim.plugins.extras.coding.neogen" },
|
||||||
{ import = "lazyvim.plugins.extras.dap.core" },
|
{ import = "lazyvim.plugins.extras.dap.core" },
|
||||||
-- { import = "lazyvim.plugins.extras.editor.dial" },
|
-- { import = "lazyvim.plugins.extras.editor.dial" },
|
||||||
|
{ import = "lazyvim.plugins.extras.editor.fzf" },
|
||||||
{ import = "lazyvim.plugins.extras.editor.illuminate" },
|
{ import = "lazyvim.plugins.extras.editor.illuminate" },
|
||||||
{ import = "lazyvim.plugins.extras.editor.leap" },
|
{ import = "lazyvim.plugins.extras.editor.leap" },
|
||||||
{ import = "lazyvim.plugins.extras.editor.overseer" },
|
{ import = "lazyvim.plugins.extras.editor.overseer" },
|
||||||
|
|
|
@ -8,5 +8,7 @@ local map = vim.keymap.set
|
||||||
-- TODO: Also remove which-key entries
|
-- TODO: Also remove which-key entries
|
||||||
unmap("n", "<Leader>uL")
|
unmap("n", "<Leader>uL")
|
||||||
unmap("n", "<Leader>ul")
|
unmap("n", "<Leader>ul")
|
||||||
|
-- unmap("n", "<Leader>ft")
|
||||||
|
-- unmap("n", "<Leader>fT")
|
||||||
|
|
||||||
map("v", "p", "pgvy", { remap = true })
|
map("v", "p", "pgvy", { remap = true })
|
||||||
|
|
|
@ -19,15 +19,18 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
-- {
|
||||||
"folke/todo-comments.nvim",
|
-- "folke/todo-comments.nvim",
|
||||||
event = "VeryLazy",
|
-- event = "VeryLazy",
|
||||||
opts = {
|
-- opts = {
|
||||||
highlight = {
|
-- highlight = {
|
||||||
multiline = false,
|
-- multiline = false,
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
},
|
-- keys = {
|
||||||
|
-- { "<leader>ft", "<cmd>TodoTelescope<cr>", desc = "Find Todos" },
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
{
|
{
|
||||||
"NvChad/nvim-colorizer.lua",
|
"NvChad/nvim-colorizer.lua",
|
||||||
cmd = { "ColorizerToggle", "ColorizerAttachToBuffer", "ColorizerDetachFromBuffer", "ColorizerReloadAllBuffers" },
|
cmd = { "ColorizerToggle", "ColorizerAttachToBuffer", "ColorizerDetachFromBuffer", "ColorizerReloadAllBuffers" },
|
||||||
|
|
Loading…
Reference in New Issue