2024-06-01 03:53:39 +01:00
|
|
|
return {
|
|
|
|
{
|
|
|
|
"tpope/vim-surround",
|
|
|
|
event = "VeryLazy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"mbbill/undotree",
|
|
|
|
event = "VeryLazy",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"windwp/nvim-autopairs",
|
|
|
|
event = "VeryLazy",
|
|
|
|
config = function()
|
|
|
|
local npairs = require('nvim-autopairs')
|
|
|
|
|
|
|
|
npairs.setup({
|
|
|
|
map_cr = true,
|
|
|
|
map_bs = true,
|
|
|
|
check_ts = true,
|
|
|
|
enable_check_bracket_line = true,
|
|
|
|
ignored_next_char = "[%w]"
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
},
|
2024-10-20 01:40:32 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
"epwalsh/obsidian.nvim",
|
|
|
|
version = "v3.9.0",
|
|
|
|
lazy = true,
|
|
|
|
ft = "markdown",
|
|
|
|
dependencies = {
|
|
|
|
"nvim-lua/plenary.nvim",
|
|
|
|
},
|
|
|
|
opts = {
|
|
|
|
workspaces = {
|
|
|
|
{
|
|
|
|
name = "tese",
|
|
|
|
path = "~/vaults/uni/tese/",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name = "chronolens",
|
|
|
|
path = "~/vaults/uni/chronolens/",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
completion = {
|
|
|
|
nvim_cmp = true,
|
|
|
|
min_chars = 2,
|
|
|
|
},
|
|
|
|
picker = {
|
|
|
|
name = "fzf-lua",
|
|
|
|
},
|
|
|
|
|
|
|
|
},
|
|
|
|
}
|
2024-06-01 03:53:39 +01:00
|
|
|
}
|