add comment line fix to nvf (thanks raf!!)
This commit is contained in:
parent
456339f6f9
commit
433334a91b
1 changed files with 10 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
|||
inherit (lib.meta) getExe;
|
||||
inherit (lib.modules) mkIf;
|
||||
inherit (lib.options) mkEnableOption;
|
||||
inherit (lib.strings) concatStrings;
|
||||
|
||||
glsl_analyzer = getExe pkgs.glsl_analyzer;
|
||||
in {
|
||||
|
@ -41,6 +42,15 @@ in {
|
|||
cmdHeight = 1;
|
||||
useSystemClipboard = false;
|
||||
|
||||
luaConfigRC = concatStrings [
|
||||
# https://github.com/NotAShelf/nyx/blob/main/homes/notashelf/programs/terminal/editors/neovim/lua/core.lua#L34-L42
|
||||
''
|
||||
vim.opt.formatoptions:remove('c')
|
||||
vim.opt.formatoptions:remove('r')
|
||||
vim.opt.formatoptions:remove('o')
|
||||
''
|
||||
];
|
||||
|
||||
additionalRuntimePaths = [ ./runtime ];
|
||||
|
||||
theme = {
|
||||
|
|
Loading…
Reference in a new issue