1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
return {
{
"ojroques/nvim-osc52",
event = "VeryLazy",
config = function()
vim.keymap.set("v", "Y", require("osc52").copy_visual)
end,
},
{ -- For CSS colors
"NvChad/nvim-colorizer.lua",
event = "BufReadPre",
opts = {
user_default_options = {
names = false,
tailwind = "both",
css = true,
css_fn = true,
mode = "background",
},
},
},
{ -- for file outline
"hedyhli/outline.nvim",
event = "VeryLazy",
opts = {},
},
{ -- Undotree
"mbbill/undotree",
event = "VeryLazy",
config = function()
vim.g.undotree_SplitWidth = 50
vim.g.undotree_WindowLayout = 3
end,
},
{ -- for colored brackets and divs
"HiPhish/rainbow-delimiters.nvim",
event = "VeryLazy",
},
{ -- for tmux navigation
event = "VeryLazy",
"christoomey/vim-tmux-navigator",
cmd = {
"TmuxNavigateLeft",
"TmuxNavigateDown",
"TmuxNavigateUp",
"TmuxNavigateRight",
"TmuxNavigatePrevious",
"TmuxNavigatorProcessList",
},
keys = {
{ "<c-h>", "<cmd><C-U>TmuxNavigateLeft<cr>" },
{ "<c-j>", "<cmd><C-U>TmuxNavigateDown<cr>" },
{ "<c-k>", "<cmd><C-U>TmuxNavigateUp<cr>" },
{ "<c-l>", "<cmd><C-U>TmuxNavigateRight<cr>" },
{ "<c-\\>", "<cmd><C-U>TmuxNavigatePrevious<cr>" },
},
},
}
|