forked from nvim-lua/kickstart.nvim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
62 lines (54 loc) · 1.36 KB
/
init.lua
File metadata and controls
62 lines (54 loc) · 1.36 KB
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
59
60
61
62
-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {
-- nvim-autopairs configuration
{
"windwp/nvim-autopairs",
-- Optional dependency
requires = { 'hrsh7th/nvim-cmp' },
config = function()
require("nvim-autopairs").setup {}
-- If you want to automatically add `(` after selecting a function or method
local cmp_autopairs = require('nvim-autopairs.completion.cmp')
local cmp = require('cmp')
cmp.event:on(
'confirm_done',
cmp_autopairs.on_confirm_done()
)
end,
},
-- vim-wakatime plugin
{
'wakatime/vim-wakatime'
},
-- todo-comments plugin
{
"folke/todo-comments.nvim",
event = "BufRead",
requires = "nvim-lua/plenary.nvim",
config = function()
require("todo-comments").setup()
end,
},
{ 'fatih/vim-go' },
{ 'evanleck/vim-svelte' },
{ 'NvChad/nvim-colorizer.lua' },
{
"roobert/tailwindcss-colorizer-cmp.nvim",
-- optionally, override the default options:
config = function()
require("tailwindcss-colorizer-cmp").setup({
color_square_width = 2,
})
end
},
{ 'junegunn/gv.vim' },
{
'kyazdani42/nvim-web-devicons'
},
{
'echasnovski/mini.icons'
}
}