Compare commits

..

No commits in common. "5f1aa0a9e74109c965f435bd3171360276306f00" and "4ef009472f9f4cef5f8c0fca362f16eab568d09a" have entirely different histories.

4 changed files with 33 additions and 4 deletions

View file

@ -22,7 +22,6 @@
"gh-copilot"
"slack"
"vscode"
"vscode-extension-anthropic-claude-code"
"vscode-extension-github-copilot"
"vscode-extension-github-copilot-chat"
"vscode-extension-MS-python-vscode-pylance"
@ -76,6 +75,8 @@
nixfmt-rfc-style
nix-prefetch-git
nodejs
noto-fonts
noto-fonts-color-emoji
ollama
openssl
pandoc

View file

@ -0,0 +1,25 @@
{ ... }:
let
myverbs = [
{
invocation = "panel_right";
key = "alt-right";
internal = ":panel_right";
}
{
invocation = "panel_left_no_open";
key = "alt-left";
internal = ":panel_left_no_open";
}
];
in
{
programs.broot = {
enable = true;
enableFishIntegration = true;
settings = {
modal = true;
verbs = myverbs;
};
};
}

View file

@ -1,5 +1,6 @@
[
./aider
./broot
./fish
./ghostty
./git

View file

@ -2,8 +2,7 @@
let
myExtensions = with pkgs.vscode-extensions; [
anthropic.claude-code
anweber.vscode-httpyac
asvetliakov.vscode-neovim
baccata.scaladex-search
charliermarsh.ruff
davidanson.vscode-markdownlint
@ -12,6 +11,7 @@ let
github.github-vscode-theme
github.vscode-github-actions
github.vscode-pull-request-github
humao.rest-client
jnoortheen.nix-ide
marp-team.marp-vscode
mechatroner.rainbow-csv
@ -37,7 +37,6 @@ let
visualstudioexptteam.vscodeintellicode
visualjj.visualjj
vscode-icons-team.vscode-icons
vscodevim.vim
vscjava.vscode-java-pack
yzhang.markdown-all-in-one
];
@ -46,6 +45,9 @@ let
"editor.fontLigatures" = true;
"editor.fontSize" = 13;
"editor.copyWithSyntaxHighlighting" = true;
"extensions.experimental.affinity" = {
"asvetliakov.vscode-neovim" = 1;
};
"extensions.ignoreRecommendations" = true;
"files.autoSave" = "afterDelay";
"git.confirmSync" = true;