improvement: disable nvim in favor of helix for now

This commit is contained in:
Christoph Hollizeck 2024-10-10 23:47:00 +02:00
parent 108be9cb10
commit 12d58b9636
6 changed files with 17 additions and 19 deletions

View file

@ -622,22 +622,6 @@
"type": "github" "type": "github"
} }
}, },
"kitty-theme": {
"flake": false,
"locked": {
"lastModified": 1724021581,
"narHash": "sha256-f+ghj8qiljbHyIPZb6b2IAxxQU9GvbYpTdEEjSN9g8E=",
"owner": "drduh",
"repo": "config",
"rev": "eedb4ecf4bb2b5fd71bb27768f76da0f2e2605c8",
"type": "github"
},
"original": {
"owner": "drduh",
"repo": "config",
"type": "github"
}
},
"nix-ld": { "nix-ld": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -813,7 +797,6 @@
"hyprland": "hyprland", "hyprland": "hyprland",
"hyprland-plugins": "hyprland-plugins", "hyprland-plugins": "hyprland-plugins",
"kickstartnvim": "kickstartnvim", "kickstartnvim": "kickstartnvim",
"kitty-theme": "kitty-theme",
"nix-ld": "nix-ld", "nix-ld": "nix-ld",
"nixos-hardware": "nixos-hardware", "nixos-hardware": "nixos-hardware",
"nixos-wsl": "nixos-wsl", "nixos-wsl": "nixos-wsl",

View file

@ -35,7 +35,7 @@ in
set -x GROFF_NO_SGR 1 set -x GROFF_NO_SGR 1
''; '';
shellAliases = { shellAliases = {
vim = "nvim"; vim = "hx";
ls = "colorls --gs"; ls = "colorls --gs";
l = "ls -l"; l = "ls -l";
la = "ls -la"; la = "ls -la";

View file

@ -132,6 +132,17 @@ in
marksman = { marksman = {
command = "${pkgs.marksman}/bin/marksman"; command = "${pkgs.marksman}/bin/marksman";
}; };
vscode-json-language-server = {
command = "${pkgs.vscode-langservers-extracted}/bin/vscode-json-language-server";
args = [ "--stdio" ];
config.provideFormatter = true;
config.json.validate.enable = true;
};
vscode-css-language-server = {
command = "${pkgs.vscode-langservers-extracted}/bin/vscode-css-language-server";
args = [ "--stdio" ];
config.provideFormatter = true;
};
}; };
}; };
}; };

View file

@ -11,7 +11,7 @@ let
in in
{ {
options.wyrdgard.apps.cli-apps.nixvim = { options.wyrdgard.apps.cli-apps.nixvim = {
enable = mkBoolOpt true "Whether to enable nixvim or not (Default true)"; enable = mkBoolOpt false "Whether to enable nixvim or not (Default true)";
}; };
config = mkIf cfg.enable { config = mkIf cfg.enable {

View file

@ -31,6 +31,8 @@ in
wyrdgard = { wyrdgard = {
nix = enabled; nix = enabled;
apps.cli-apps.helix = enabled;
tools = { tools = {
git = enabled; git = enabled;
}; };

View file

@ -34,6 +34,8 @@ in
wyrdgard = { wyrdgard = {
nix = enabled; nix = enabled;
apps.cli-apps.helix = enabled;
tools = { tools = {
git = enabled; git = enabled;
}; };