packages, configs
parent
31c6c1f728
commit
ddd14e2246
@ -1,32 +1,32 @@
|
|||||||
return {
|
return {
|
||||||
{ "catppuccin/nvim", name = "catppuccin" },
|
{ "catppuccin/nvim", name = "catppuccin" },
|
||||||
|
|
||||||
{
|
{
|
||||||
"LazyVim/LazyVim",
|
"LazyVim/LazyVim",
|
||||||
opts = {
|
opts = {
|
||||||
colorscheme = "catppuccin",
|
colorscheme = "catppuccin",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
"nvim-orgmode/orgmode",
|
"nvim-orgmode/orgmode",
|
||||||
config = function()
|
config = function()
|
||||||
require("orgmode").setup_ts_grammar()
|
require("orgmode").setup_ts_grammar()
|
||||||
|
|
||||||
require("nvim-treesitter.configs").setup({
|
require("nvim-treesitter.configs").setup({
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
additional_vim_regex_highlighting = { "org" }, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar
|
additional_vim_regex_highlighting = { "org" }, -- Required for spellcheck, some LaTex highlights and code block highlights that do not have ts grammar
|
||||||
},
|
},
|
||||||
ensure_installed = { "org" }, -- Or run :TSUpdate org
|
ensure_installed = { "org" }, -- Or run :TSUpdate org
|
||||||
})
|
})
|
||||||
|
|
||||||
require("orgmode").setup({
|
require("orgmode").setup({
|
||||||
org_agenda_files = { "~/Sync/Notes/*" },
|
org_agenda_files = { "~/Sync/Notes/*" },
|
||||||
org_default_notes_file = "~/Sync/Notes/Main.org",
|
org_default_notes_file = "~/Sync/Notes/Main.org",
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
{ "dhruvasagar/vim-table-mode" },
|
{ "dhruvasagar/vim-table-mode" },
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue