Cleaner kakoune configuration
This commit is contained in:
parent
a39ad62ae5
commit
3e95ab122d
9 changed files with 61 additions and 23 deletions
|
|
@ -1,8 +1,12 @@
|
|||
{ pkgs, ... }: {
|
||||
{ pkgs, lib, config, ... }: {
|
||||
programs.go = {
|
||||
enable = true;
|
||||
goPath = ".go";
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [ gopls ];
|
||||
home.packages = with pkgs; lib.optionals config.programs.helix.enable [
|
||||
gopls
|
||||
] ++ (lib.optionals config.programs.kakoune.enable [
|
||||
gopls
|
||||
]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue