ide: move extension deps to module
This commit is contained in:
parent
b0a3d272da
commit
df2457b36f
5 changed files with 106 additions and 44 deletions
options/custom
|
@ -17,9 +17,23 @@ in {
|
||||||
# https://github.com/nix-community/nix-vscode-extensions
|
# https://github.com/nix-community/nix-vscode-extensions
|
||||||
nixpkgs.overlays = [inputs.nix-vscode-extensions.overlays.default];
|
nixpkgs.overlays = [inputs.nix-vscode-extensions.overlays.default];
|
||||||
|
|
||||||
environment.sessionVariables = {
|
environment = {
|
||||||
# https://github.com/nix-community/nixd/blob/main/nixd/docs/features.md
|
sessionVariables = {
|
||||||
NIXD_FLAGS = "--inlay-hints=false"; # Disable package versions in the editor
|
# https://github.com/nix-community/nixd/blob/main/nixd/docs/features.md
|
||||||
|
NIXD_FLAGS = "--inlay-hints=false"; # Disable package versions in the editor
|
||||||
|
};
|
||||||
|
|
||||||
|
# Extension dependencies
|
||||||
|
systemPackages = with pkgs; [
|
||||||
|
alejandra # nix-ide
|
||||||
|
blueprint-compiler # blueprint-gtk
|
||||||
|
caddy # caddyfile-support
|
||||||
|
nil # nix-ide
|
||||||
|
nixd # nix-ide
|
||||||
|
powershell # powershell
|
||||||
|
shellcheck # shellcheck
|
||||||
|
shfmt # shell-format
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager.sharedModules = mkIf cfg.enable [
|
home-manager.sharedModules = mkIf cfg.enable [
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
with lib; let
|
with lib; let
|
||||||
|
@ -11,22 +12,48 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
# Extension dependencies
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
alejandra # nix
|
||||||
|
basedpyright # basedpyright
|
||||||
|
blueprint-compiler # blueprint
|
||||||
|
caddy # caddyfile
|
||||||
|
docker-compose-language-service # docker-compose
|
||||||
|
dockerfile-language-server-nodejs # dockerfile
|
||||||
|
jdt-language-server # java
|
||||||
|
nginx-language-server # nginx
|
||||||
|
nil # nix
|
||||||
|
nixd # nix
|
||||||
|
nushell # nu
|
||||||
|
phpactor # php
|
||||||
|
powershell # powershell
|
||||||
|
powershell-editor-services # powershell
|
||||||
|
shellcheck # basher
|
||||||
|
shfmt # basher
|
||||||
|
simple-completion-language-server # snippets
|
||||||
|
svelte-language-server # svelte
|
||||||
|
vscode-langservers-extracted # html
|
||||||
|
];
|
||||||
|
|
||||||
home-manager.sharedModules = [
|
home-manager.sharedModules = [
|
||||||
{
|
{
|
||||||
# https://zed.dev/
|
# https://zed.dev/
|
||||||
# https://github.com/zed-industries/zed
|
# https://github.com/zed-industries/zed
|
||||||
|
# https://wiki.nixos.org/wiki/Zed
|
||||||
programs.zed-editor = {
|
programs.zed-editor = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
# https://zed.dev/docs/extensions
|
# https://zed.dev/docs/extensions
|
||||||
# https://github.com/zed-industries/extensions/tree/main/extensions
|
# https://github.com/zed-industries/extensions/tree/main/extensions
|
||||||
extensions = [
|
extensions = [
|
||||||
#// "basedpyright" # https://github.com/m1guer/basedpyright-zed
|
"bearded-icon-theme" # https://github.com/sethstha/bearded-icons-theme
|
||||||
|
"basedpyright" # https://github.com/m1guer/basedpyright-zed
|
||||||
"basher" # https://github.com/d1y/bash.zed
|
"basher" # https://github.com/d1y/bash.zed
|
||||||
|
"blueprint" # https://github.com/tfuxu/zed-blueprint
|
||||||
"caddyfile" # https://github.com/nusnewob/caddyfile-zed
|
"caddyfile" # https://github.com/nusnewob/caddyfile-zed
|
||||||
"colored-zed-icons-theme" # https://github.com/TheRedXD/zed-icons-colored-theme
|
#// "colored-zed-icons-theme" # https://github.com/TheRedXD/zed-icons-colored-theme
|
||||||
"csv" # https://github.com/huacnlee/zed-csv
|
"csv" # https://github.com/huacnlee/zed-csv
|
||||||
"discord-presence" # https://github.com/xhyrom/zed-discord-presence
|
#// "discord-presence" # https://github.com/xhyrom/zed-discord-presence
|
||||||
"docker-compose" # https://github.com/eth0net/zed-docker-compose
|
"docker-compose" # https://github.com/eth0net/zed-docker-compose
|
||||||
"dockerfile" # https://github.com/d1y/dockerfile.zed
|
"dockerfile" # https://github.com/d1y/dockerfile.zed
|
||||||
"env" # https://github.com/zarifpour/zed-env
|
"env" # https://github.com/zarifpour/zed-env
|
||||||
|
@ -37,25 +64,36 @@ in {
|
||||||
"java" # https://github.com/zed-extensions/java
|
"java" # https://github.com/zed-extensions/java
|
||||||
"jinja2" # https://github.com/ArcherHume/jinja2-support
|
"jinja2" # https://github.com/ArcherHume/jinja2-support
|
||||||
"make" # https://github.com/caius/zed-make
|
"make" # https://github.com/caius/zed-make
|
||||||
"material-icon-theme" # https://github.com/zed-extensions/material-icon-theme
|
#// "material-icon-theme" # https://github.com/zed-extensions/material-icon-theme
|
||||||
"nginx" # https://github.com/d1y/nginx-zed
|
"nginx" # https://github.com/d1y/nginx-zed
|
||||||
"nix" # https://github.com/zed-extensions/nix
|
"nix" # https://github.com/zed-extensions/nix
|
||||||
"nu" # https://github.com/zed-extensions/nu
|
"nu" # https://github.com/zed-extensions/nu
|
||||||
"php" # https://github.com/zed-extensions/php
|
"php" # https://github.com/zed-extensions/php
|
||||||
"powershell" # https://github.com/wingyplus/zed-powershell
|
"powershell" # https://github.com/wingyplus/zed-powershell
|
||||||
"pylsp" # https://github.com/rgbkrk/python-lsp-zed-extension
|
|
||||||
"scss" # https://github.com/bajrangCoder/zed-scss
|
# TODO: Add dependencies
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/229337
|
||||||
|
#// "pylsp" # https://github.com/rgbkrk/python-lsp-zed-extension
|
||||||
|
|
||||||
|
# BUG: scss-lsp/some-sass-lsp not packaged yet
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/380280
|
||||||
|
#// "scss" # https://github.com/bajrangCoder/zed-scss
|
||||||
|
|
||||||
"sql" # https://github.com/zed-extensions/sql
|
"sql" # https://github.com/zed-extensions/sql
|
||||||
"svelte" # https://github.com/zed-extensions/svelte
|
"svelte" # https://github.com/zed-extensions/svelte
|
||||||
"tmux" # https://github.com/dangh/zed-tmux
|
"tmux" # https://github.com/dangh/zed-tmux
|
||||||
|
|
||||||
|
# BUG: unocss-language-server not packaged yet
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/270993
|
||||||
"unocss" # https://github.com/bajrangCoder/zed-unocss
|
"unocss" # https://github.com/bajrangCoder/zed-unocss
|
||||||
|
|
||||||
"xml" # https://github.com/sweetppro/zed-xml
|
"xml" # https://github.com/sweetppro/zed-xml
|
||||||
];
|
];
|
||||||
|
|
||||||
# https://zed.dev/docs/key-bindings
|
# https://zed.dev/docs/key-bindings
|
||||||
userKeymaps = [
|
userKeymaps = [
|
||||||
{
|
{
|
||||||
# Global keybinds
|
# Global
|
||||||
bindings = {
|
bindings = {
|
||||||
"alt-\\" = "workspace::ToggleBottomDock";
|
"alt-\\" = "workspace::ToggleBottomDock";
|
||||||
"alt-a" = "assistant::ToggleFocus";
|
"alt-a" = "assistant::ToggleFocus";
|
||||||
|
@ -72,10 +110,10 @@ in {
|
||||||
"alt-shift-tab" = "workspace::ToggleRightDock";
|
"alt-shift-tab" = "workspace::ToggleRightDock";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
|
||||||
# Editor keybinds
|
|
||||||
context = "Editor";
|
|
||||||
|
|
||||||
|
{
|
||||||
|
# Editor
|
||||||
|
context = "Editor";
|
||||||
bindings = {
|
bindings = {
|
||||||
"alt-backspace" = "editor::DeleteLine";
|
"alt-backspace" = "editor::DeleteLine";
|
||||||
"alt-enter" = "editor::DuplicateLineDown";
|
"alt-enter" = "editor::DuplicateLineDown";
|
||||||
|
@ -86,11 +124,19 @@ in {
|
||||||
"alt-shift-enter" = "editor::DuplicateLineUp";
|
"alt-shift-enter" = "editor::DuplicateLineUp";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
# Terminal keybinds
|
# Editor completions
|
||||||
|
context = "Editor && showing_completions";
|
||||||
|
bindings = {
|
||||||
|
"enter" = "editor::Newline";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
# Terminal
|
||||||
# https://zed.dev/docs/key-bindings#forward-keys-to-terminal
|
# https://zed.dev/docs/key-bindings#forward-keys-to-terminal
|
||||||
context = "Terminal";
|
context = "Terminal";
|
||||||
|
|
||||||
bindings = {
|
bindings = {
|
||||||
"ctrl-s" = ["terminal::SendKeystroke" "ctrl-s"];
|
"ctrl-s" = ["terminal::SendKeystroke" "ctrl-s"];
|
||||||
};
|
};
|
||||||
|
@ -146,7 +192,7 @@ in {
|
||||||
default_width = 300;
|
default_width = 300;
|
||||||
};
|
};
|
||||||
|
|
||||||
icon_theme = "Colored Zed Icons Theme Dark";
|
icon_theme = "Bearded Icon Theme";
|
||||||
|
|
||||||
indent_guides = {
|
indent_guides = {
|
||||||
active_line_width = 2;
|
active_line_width = 2;
|
||||||
|
@ -200,7 +246,7 @@ in {
|
||||||
line_height = "standard";
|
line_height = "standard";
|
||||||
};
|
};
|
||||||
|
|
||||||
ui_font_size = mkForce 18;
|
ui_font_size = mkForce 19;
|
||||||
|
|
||||||
# Language-specific
|
# Language-specific
|
||||||
# https://zed.dev/docs/configuring-languages
|
# https://zed.dev/docs/configuring-languages
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
{
|
|
||||||
"Shell Bash Argc": {
|
|
||||||
"prefix": "sba",
|
|
||||||
"body": [
|
|
||||||
"#! /usr/bin/env bash",
|
|
||||||
"",
|
|
||||||
"# @describe $1",
|
|
||||||
"#",
|
|
||||||
"# https://github.com/sigoden/argc",
|
|
||||||
"",
|
|
||||||
"# @meta combine-shorts",
|
|
||||||
"",
|
|
||||||
"$0",
|
|
||||||
"",
|
|
||||||
"eval \"\\$(argc --argc-eval \"\\$0\" \"\\$@\")\""
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"Home Manager Option": {
|
"Home Manager Option": {
|
||||||
"prefix": "ho",
|
"prefix": "ho",
|
||||||
|
"description": "Home Manager Option",
|
||||||
"body": [
|
"body": [
|
||||||
"{",
|
"{",
|
||||||
" config,",
|
" config,",
|
||||||
|
@ -28,6 +29,7 @@
|
||||||
|
|
||||||
"NixOS Agenix": {
|
"NixOS Agenix": {
|
||||||
"prefix": "na",
|
"prefix": "na",
|
||||||
|
"description": "NixOS Agenix",
|
||||||
"body": [
|
"body": [
|
||||||
"age.secrets =",
|
"age.secrets =",
|
||||||
" let",
|
" let",
|
||||||
|
@ -43,6 +45,7 @@
|
||||||
|
|
||||||
"NixOS Container Arion": {
|
"NixOS Container Arion": {
|
||||||
"prefix": "nca",
|
"prefix": "nca",
|
||||||
|
"description": "NixOS Container Arion",
|
||||||
"body": [
|
"body": [
|
||||||
"{",
|
"{",
|
||||||
" config,",
|
" config,",
|
||||||
|
@ -87,6 +90,7 @@
|
||||||
|
|
||||||
"Nix Develop": {
|
"Nix Develop": {
|
||||||
"prefix": "nd",
|
"prefix": "nd",
|
||||||
|
"description": "Nix Develop",
|
||||||
"body": [
|
"body": [
|
||||||
"{",
|
"{",
|
||||||
" inputs = {",
|
" inputs = {",
|
||||||
|
@ -113,6 +117,7 @@
|
||||||
|
|
||||||
"NixOS Option": {
|
"NixOS Option": {
|
||||||
"prefix": "no",
|
"prefix": "no",
|
||||||
|
"description": "NixOS Option",
|
||||||
"body": [
|
"body": [
|
||||||
"{",
|
"{",
|
||||||
" config,",
|
" config,",
|
||||||
|
@ -131,5 +136,29 @@
|
||||||
" };",
|
" };",
|
||||||
"}"
|
"}"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
"Script Bash": {
|
||||||
|
"prefix": "sb",
|
||||||
|
"description": "Script Bash",
|
||||||
|
"body": ["#! /usr/bin/env bash", "", "$0"]
|
||||||
|
},
|
||||||
|
|
||||||
|
"Script Bash Argc": {
|
||||||
|
"prefix": "sba",
|
||||||
|
"description": "Script Bash Argc",
|
||||||
|
"body": [
|
||||||
|
"#! /usr/bin/env bash",
|
||||||
|
"",
|
||||||
|
"# @describe $1",
|
||||||
|
"#",
|
||||||
|
"# https://github.com/sigoden/argc",
|
||||||
|
"",
|
||||||
|
"# @meta combine-shorts",
|
||||||
|
"",
|
||||||
|
"$0",
|
||||||
|
"",
|
||||||
|
"eval \"\\$(argc --argc-eval \"\\$0\" \"\\$@\")\""
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -23,9 +23,6 @@ in {
|
||||||
perf # Performance analyzer
|
perf # Performance analyzer
|
||||||
])
|
])
|
||||||
++ optionals config.custom.default [
|
++ optionals config.custom.default [
|
||||||
alejandra # Nix formatter
|
|
||||||
blueprint-compiler # GTK markup language
|
|
||||||
caddy # Reverse proxy
|
|
||||||
fd # File finder
|
fd # File finder
|
||||||
fzf # Fuzzy search
|
fzf # Fuzzy search
|
||||||
inetutils # Network utilities
|
inetutils # Network utilities
|
||||||
|
@ -34,20 +31,14 @@ in {
|
||||||
lf # Terminal file manager
|
lf # Terminal file manager
|
||||||
lm_sensors # System sensors
|
lm_sensors # System sensors
|
||||||
lz4 # Compression utility
|
lz4 # Compression utility
|
||||||
nil # Nix language server
|
|
||||||
nix-output-monitor # Nix build parser
|
nix-output-monitor # Nix build parser
|
||||||
nix-tree # Nix store explorer
|
nix-tree # Nix store explorer
|
||||||
nixd # Nix language server
|
|
||||||
nmap # Network scanner
|
nmap # Network scanner
|
||||||
nvd # Nix diff viewer
|
nvd # Nix diff viewer
|
||||||
openssl # Certificate utility
|
openssl # Certificate utility
|
||||||
powershell # Windows shell
|
|
||||||
progress # Coreutils progress viewer
|
progress # Coreutils progress viewer
|
||||||
q # DNS tester
|
q # DNS tester
|
||||||
rclone # File sync
|
rclone # File sync
|
||||||
shellcheck # Script analysis tool
|
|
||||||
shfmt # Script formatter
|
|
||||||
simple-completion-language-server # Snippet language server
|
|
||||||
sshpass # SSH automation
|
sshpass # SSH automation
|
||||||
stress # CPU stress tester
|
stress # CPU stress tester
|
||||||
testdisk # Data recovery tool
|
testdisk # Data recovery tool
|
||||||
|
|
Loading…
Add table
Reference in a new issue