feat(nvim)!: remove org mode
parent
7f336c2a90
commit
abdb620c83
|
@ -124,10 +124,6 @@ with builtins;
|
||||||
'';
|
'';
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ plugin = nvim-ts-context-commentstring; }
|
{ plugin = nvim-ts-context-commentstring; }
|
||||||
{
|
|
||||||
plugin = orgmode;
|
|
||||||
conf = readFile ./orgmode.lua;
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,13 +1,8 @@
|
||||||
-- Load custom treesitter grammar for org filetype
|
|
||||||
require("orgmode").setup_ts_grammar()
|
|
||||||
require("nvim-treesitter.configs").setup({
|
require("nvim-treesitter.configs").setup({
|
||||||
sync_install = false,
|
sync_install = false,
|
||||||
auto_install = false,
|
auto_install = false,
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
-- Required for spellcheck, some LaTex highlights and
|
|
||||||
-- code block highlights that do not have ts grammar
|
|
||||||
additional_vim_regex_highlighting = { "org" },
|
|
||||||
},
|
},
|
||||||
context_commentstring = {
|
context_commentstring = {
|
||||||
enable = true,
|
enable = true,
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
require("orgmode").setup({
|
|
||||||
org_agenda_files = { "~/Notes/org" },
|
|
||||||
org_default_notes_file = "~/Notes/org/refile.org",
|
|
||||||
})
|
|
Loading…
Reference in New Issue