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
|
return {
{ "nvimdev/hlsearch.nvim", event = { "BufReadPre", "BufNewFile" }, opts = {} },
{ "folke/todo-comments.nvim", event = { "BufReadPre", "BufNewFile" }, opts = {} },
{ "kylechui/nvim-surround", event = "VeryLazy", opts = {} },
{ "numtostr/comment.nvim", event = "VeryLazy", opts = {} },
{ "folke/neodev.nvim", ft = "lua", opts = {} },
{ "simrat39/rust-tools.nvim", ft = "rust", opts = {} },
{
"iamcco/markdown-preview.nvim",
build = "cd app && npm install",
cmd = { "MarkdownPreview", "MarkdownPreviewStop", "MarkdownPreviewToggle" },
},
{
"Olical/conjure",
ft = {
"clojure",
"fennel",
"janet",
"racket",
"hy",
"scheme",
"guile",
"commonlisp",
"julia",
"rust",
"lua",
"python",
},
config = function()
vim.g.conjure = { mapping = { doc_word = false } }
end,
},
}
|