added neorg, a norg editor for nvim

This commit is contained in:
Gabriella Bere 2025-06-04 17:14:59 +01:00
parent ff65efd702
commit 0e17b48ec5

View file

@ -1,7 +1,4 @@
{ {...}:
pkgs,
...
}:
{ {
programs.nvf = { programs.nvf = {
enable = true; enable = true;
@ -37,21 +34,11 @@
java.enable = true; java.enable = true;
}; };
autocomplete.blink-cmp.enable = true; autocomplete.blink-cmp.enable = true;
startPlugins = with pkgs.vimPlugins; [ notes.neorg = {
vimwiki enable = true;
]; setupOpts.load."core.defaults".enable = true;
# the following doesnt seem to work, i fear i may have to properly package vimwiki but i dont want to do that right now so i will come back later treesitter.enable = true;
# luaConfigRC = '' };
#
# -- set vimwiki settings that I want
# set nocompatible
# filetype plugin on
# syntax on
#
# let g:vimwiki_list = [{'path': '~/Notes/',
# \ 'syntax': 'markdown', 'ext': 'md'}]
# let g:vimwiki_global_ext = 0
# ''; # Required settings for vimwiki
}; };
}; };
}; };