made core options work in neovim

This commit is contained in:
Nicolai Van der Storm 2023-10-18 10:30:41 +02:00
parent 52feec908f
commit 961a213c3c
Signed by: NicolaiVdS
GPG Key ID: CA53B34914EFD59B
2 changed files with 7 additions and 6 deletions

View File

@ -1 +0,0 @@
vim.cmd("runtime! .lua")

View File

@ -42,10 +42,11 @@
config = toLuaFile ./plugins/indent.lua;
}
{
plugin = nvim-ts-autotag;
config = toLuaFile ./plugins/autotag.lua;
}
# TODO: enable this when treesitter is installed
# {
# plugin = nvim-ts-autotag;
# config = toLuaFile ./plugins/autotag.lua;
# }
{
plugin = nvim-colorizer-lua;
@ -54,7 +55,8 @@
];
extraLuaConfig = ''
vim.cmd("runtime! core/*.lua")
${builtins.readFile ./core/colors.lua}
${builtins.readFile ./core/options.lua}
'';
extraPackages = with pkgs; [