Updated config

This commit is contained in:
2024-03-02 00:32:40 +01:00
parent d82d239cd0
commit d6871eb3b9
16 changed files with 81 additions and 29 deletions

View File

@ -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,
}

View File

@ -3,6 +3,7 @@ return {
event = "VeryLazy",
opts = {
background_colour = "#000000",
timeout = 0,
},
config = true,
}

View File

@ -18,6 +18,8 @@ return {
["<esc>"] = require("telescope.actions").close,
},
},
prompt_prefix = " ",
selection_caret = "",
},
extensions = {
project = {

View File

@ -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,