quickshell!

This commit is contained in:
Charlie Root 2024-07-10 22:10:54 +02:00
commit dc8e6873c3
17 changed files with 251 additions and 47 deletions

View file

@ -70,16 +70,16 @@ in {
# I have come to realise that spellfile contents are
# actually **not** loaded when luaConfigRC is used.
# as spellfile is a vim thing, this should be fine
# configRC.spellfile = entryAnywhere ''
# set spellfile=${toString ./spell/runtime/en.utf-8.add} " toString sanitizes the path
# '';
configRC.spellfile = entryAnywhere ''
set spellfile=${toString ./spell/runtime/en.utf-8.add} " toString sanitizes the path
'';
# additional lua configuration that I can append
# or, to be more precise, randomly inject into
# the lua configuration of my Neovim configuration
# wrapper. this is recursively read from the lua
# directory, so we do not need to use require
/*
luaConfigRC = let
# get the name of each lua file in the lua directory, where setting files reside
# and import them recursively
@ -94,7 +94,6 @@ in {
'');
in
luaConfig;
*/
};
};
};