add zed stuff and remove librewolf chroma
This commit is contained in:
parent
91068b7338
commit
8426d1b07b
3 changed files with 29 additions and 6 deletions
|
|
@ -83,6 +83,9 @@ inputs: all: {
|
|||
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
interactiveShellInit = ''
|
||||
bind alt-backspace backward-kill-word
|
||||
'';
|
||||
};
|
||||
|
||||
programs.librewolf = {
|
||||
|
|
|
|||
|
|
@ -96,10 +96,6 @@ in {
|
|||
}))
|
||||
];
|
||||
settings = {
|
||||
# "darkwindow:shader[black]" = {
|
||||
# from = "chromakey";
|
||||
# args = "bkg=[0.0 0.0 0.0] similarity=0.0 amount=0.0 targetOpacity=0.0";
|
||||
# };
|
||||
"plugin:dynamic-cursors" = {
|
||||
mode = "rotate";
|
||||
shake.enabled = false;
|
||||
|
|
@ -143,8 +139,6 @@ in {
|
|||
"pin,class:(flameshot),title:(flameshot)"
|
||||
"fullscreenstate,class:(flameshot),title:(flameshot)"
|
||||
"float,class:(flameshot),title:(flameshot)"
|
||||
|
||||
"plugin:shadewindow chromakey bkg=[0 0 0] similarity=0.02 amount=1 targetOpacity=0.8, class:librewolf"
|
||||
];
|
||||
bind =
|
||||
[
|
||||
|
|
|
|||
|
|
@ -19,6 +19,32 @@ in {
|
|||
alejandra
|
||||
];
|
||||
|
||||
programs.zed-editor = {
|
||||
extensions = [
|
||||
"elm"
|
||||
"nix"
|
||||
];
|
||||
userSettings = {
|
||||
vim_mode = true;
|
||||
node = {
|
||||
path = lib.getExe pkgs.nodejs;
|
||||
npm_path = lib.getExe' pkgs.nodejs "npm";
|
||||
};
|
||||
lsp = {
|
||||
elm-language-server.initialization_options = {
|
||||
"elmReviewDiagnostics" = "warning";
|
||||
|
||||
# "elmPath" = "${pkgs.elmPackages.elm}/bin/elm";
|
||||
# "elmReviewPath" = "${pkgs.elmPackages.elm-review}/bin/elm-review";
|
||||
# "elmFormatPath" = "${pkgs.elmPackages.elm-format}/bin/elm-format";
|
||||
"elmPath" = "elm";
|
||||
"elmReviewPath" = "elm-review";
|
||||
"elmFormatPath" = "elm-format";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.vscode = {
|
||||
package = pkgs.vscodium;
|
||||
userSettings = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue