Updated config
This commit is contained in:
@ -1,14 +0,0 @@
|
||||
return {
|
||||
"brenton-leighton/multiple-cursors.nvim",
|
||||
event = "VeryLazy",
|
||||
keys = {
|
||||
{"<C-Down>", "<Cmd>MultipleCursorsAddDown<CR>", mode = {"n", "i"}},
|
||||
{"<C-j>", "<Cmd>MultipleCursorsAddDown<CR>"},
|
||||
{"<C-Up>", "<Cmd>MultipleCursorsAddUp<CR>", mode = {"n", "i"}},
|
||||
{"<C-k>", "<Cmd>MultipleCursorsAddUp<CR>"},
|
||||
{"<C-LeftMouse>", "<Cmd>MultipleCursorsMouseAddDelete<CR>", mode = {"n", "i"}},
|
||||
{"<Leader>a", "<Cmd>MultipleCursorsAddBySearch<CR>", mode = {"n", "x"}},
|
||||
{"<Leader>A", "<Cmd>MultipleCursorsAddBySearchV<CR>", mode = {"n", "x"}},
|
||||
},
|
||||
config = true,
|
||||
}
|
@ -3,6 +3,7 @@ return {
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
background_colour = "#000000",
|
||||
timeout = 0,
|
||||
},
|
||||
config = true,
|
||||
}
|
||||
|
@ -18,6 +18,8 @@ return {
|
||||
["<esc>"] = require("telescope.actions").close,
|
||||
},
|
||||
},
|
||||
prompt_prefix = " ",
|
||||
selection_caret = " ",
|
||||
},
|
||||
extensions = {
|
||||
project = {
|
||||
|
@ -23,10 +23,6 @@ local function on_attach(bufnr)
|
||||
|
||||
api.node.open.edit()
|
||||
api.tree.focus()
|
||||
-- local node = api.tree.get_node_under_cursor()
|
||||
-- if node.nodes ~= nil then
|
||||
-- api.node.open.edit()
|
||||
-- end
|
||||
end, 10)
|
||||
end, opts("Open folder/file"))
|
||||
end
|
||||
@ -70,7 +66,7 @@ return {
|
||||
update_root = false,
|
||||
},
|
||||
view = {
|
||||
width = 35,
|
||||
width = 30,
|
||||
},
|
||||
},
|
||||
config = true,
|
||||
|
Reference in New Issue
Block a user