add: update tune config

This commit is contained in:
asep.komarudin 2024-04-10 20:34:02 +07:00
parent 86d1629612
commit d2799f9f3f
4 changed files with 209 additions and 191 deletions

View file

@ -322,7 +322,20 @@ return {
-- build = "npm install -g live-server",
-- },
-- for multi cursor select
{ "mg979/vim-visual-multi", event = { "BufRead", "InsertEnter", "BufNewFile" }, lazy = true },
{
"mg979/vim-visual-multi",
event = { "BufRead", "InsertEnter", "BufNewFile" },
lazy = true,
init = function()
vim.g.VM_mouse_mappings = 1 -- equal CTRL + Left Click on VSCODE
vim.g.VM_maps = {
["Find Under"] = "<C-d>", -- equal CTRL+D on VSCODE
["Find Subword Under"] = "<C-d>", -- equal CTRL+D on VSCODE
["Select Cursor Down"] = "<M-C-Down>", -- equal CTRL+ALT+DOWN on VSCODE
["Select Cursor Up"] = "<M-C-Up>", -- equal CTRL+ALT+UP on VSCODE
}
end,
},
-- for auto close tag
{
"windwp/nvim-ts-autotag",
@ -370,7 +383,8 @@ return {
{
"rcarriga/nvim-notify",
lazy = true,
event = "BufWinEnter",
-- event = "BufWinEnter",
event = "VeryLazy",
keys = {
{
"<leader>un",