feat(nvim)!: remove org mode

dev-docs
Moritz Böhme 2023-09-06 17:46:29 +02:00
parent 7f336c2a90
commit abdb620c83
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
3 changed files with 0 additions and 13 deletions

View File

@ -124,10 +124,6 @@ with builtins;
''; '';
dependencies = [ dependencies = [
{ plugin = nvim-ts-context-commentstring; } { plugin = nvim-ts-context-commentstring; }
{
plugin = orgmode;
conf = readFile ./orgmode.lua;
}
]; ];
} }
{ {

View File

@ -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,

View File

@ -1,4 +0,0 @@
require("orgmode").setup({
org_agenda_files = { "~/Notes/org" },
org_default_notes_file = "~/Notes/org/refile.org",
})