Compare commits

...

2 commits

Author SHA1 Message Date
8dd37a8833 home: xdg: move 'less' variables to their module
All checks were successful
ci/woodpecker/push/check Pipeline was successful
2024-03-11 18:10:33 +00:00
801f097c51 home: vim: lspconfig: remove 'rnix-lsp'
All checks were successful
ci/woodpecker/push/check Pipeline was successful
It's been abandoned, `nil` is a better language server nowadays.
2024-03-11 17:32:54 +01:00
3 changed files with 1 additions and 9 deletions

View file

@ -16,6 +16,7 @@ in
LESS = "-R -+X -c";
# Better XDG compliance
LESSHISTFILE = "${config.xdg.dataHome}/less/history";
LESSKEY = "${config.xdg.configHome}/less/lesskey";
};
};
}

View file

@ -45,13 +45,6 @@ if utils.is_executable("nil") then
})
end
if utils.is_executable("rnix-lsp") then
lspconfig.rnix.setup({
capabilities = capabilities,
on_attach = lsp.on_attach,
})
end
-- Python
if utils.is_executable("pyright") then
lspconfig.pyright.setup({

View file

@ -46,8 +46,6 @@ in
GRADLE_USER_HOME = "${dataHome}/gradle";
HISTFILE = "${dataHome}/bash/history";
INPUTRC = "${configHome}/readline/inputrc";
LESSHISTFILE = "${dataHome}/less/history";
LESSKEY = "${configHome}/less/lesskey";
PSQL_HISTORY = "${dataHome}/psql_history";
PYTHONPYCACHEPREFIX = "${cacheHome}/python/";
PYTHONUSERBASE = "${dataHome}/python/";