mirror of
https://github.com/softinio/nix-config.git
synced 2025-10-19 03:26:40 -07:00
Compare commits
No commits in common. "5f1aa0a9e74109c965f435bd3171360276306f00" and "4ef009472f9f4cef5f8c0fca362f16eab568d09a" have entirely different histories.
5f1aa0a9e7
...
4ef009472f
4 changed files with 33 additions and 4 deletions
3
home.nix
3
home.nix
|
@ -22,7 +22,6 @@
|
||||||
"gh-copilot"
|
"gh-copilot"
|
||||||
"slack"
|
"slack"
|
||||||
"vscode"
|
"vscode"
|
||||||
"vscode-extension-anthropic-claude-code"
|
|
||||||
"vscode-extension-github-copilot"
|
"vscode-extension-github-copilot"
|
||||||
"vscode-extension-github-copilot-chat"
|
"vscode-extension-github-copilot-chat"
|
||||||
"vscode-extension-MS-python-vscode-pylance"
|
"vscode-extension-MS-python-vscode-pylance"
|
||||||
|
@ -76,6 +75,8 @@
|
||||||
nixfmt-rfc-style
|
nixfmt-rfc-style
|
||||||
nix-prefetch-git
|
nix-prefetch-git
|
||||||
nodejs
|
nodejs
|
||||||
|
noto-fonts
|
||||||
|
noto-fonts-color-emoji
|
||||||
ollama
|
ollama
|
||||||
openssl
|
openssl
|
||||||
pandoc
|
pandoc
|
||||||
|
|
25
programs/broot/default.nix
Normal file
25
programs/broot/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
[
|
[
|
||||||
./aider
|
./aider
|
||||||
|
./broot
|
||||||
./fish
|
./fish
|
||||||
./ghostty
|
./ghostty
|
||||||
./git
|
./git
|
||||||
|
|
|
@ -2,8 +2,7 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
myExtensions = with pkgs.vscode-extensions; [
|
myExtensions = with pkgs.vscode-extensions; [
|
||||||
anthropic.claude-code
|
asvetliakov.vscode-neovim
|
||||||
anweber.vscode-httpyac
|
|
||||||
baccata.scaladex-search
|
baccata.scaladex-search
|
||||||
charliermarsh.ruff
|
charliermarsh.ruff
|
||||||
davidanson.vscode-markdownlint
|
davidanson.vscode-markdownlint
|
||||||
|
@ -12,6 +11,7 @@ let
|
||||||
github.github-vscode-theme
|
github.github-vscode-theme
|
||||||
github.vscode-github-actions
|
github.vscode-github-actions
|
||||||
github.vscode-pull-request-github
|
github.vscode-pull-request-github
|
||||||
|
humao.rest-client
|
||||||
jnoortheen.nix-ide
|
jnoortheen.nix-ide
|
||||||
marp-team.marp-vscode
|
marp-team.marp-vscode
|
||||||
mechatroner.rainbow-csv
|
mechatroner.rainbow-csv
|
||||||
|
@ -37,7 +37,6 @@ let
|
||||||
visualstudioexptteam.vscodeintellicode
|
visualstudioexptteam.vscodeintellicode
|
||||||
visualjj.visualjj
|
visualjj.visualjj
|
||||||
vscode-icons-team.vscode-icons
|
vscode-icons-team.vscode-icons
|
||||||
vscodevim.vim
|
|
||||||
vscjava.vscode-java-pack
|
vscjava.vscode-java-pack
|
||||||
yzhang.markdown-all-in-one
|
yzhang.markdown-all-in-one
|
||||||
];
|
];
|
||||||
|
@ -46,6 +45,9 @@ let
|
||||||
"editor.fontLigatures" = true;
|
"editor.fontLigatures" = true;
|
||||||
"editor.fontSize" = 13;
|
"editor.fontSize" = 13;
|
||||||
"editor.copyWithSyntaxHighlighting" = true;
|
"editor.copyWithSyntaxHighlighting" = true;
|
||||||
|
"extensions.experimental.affinity" = {
|
||||||
|
"asvetliakov.vscode-neovim" = 1;
|
||||||
|
};
|
||||||
"extensions.ignoreRecommendations" = true;
|
"extensions.ignoreRecommendations" = true;
|
||||||
"files.autoSave" = "afterDelay";
|
"files.autoSave" = "afterDelay";
|
||||||
"git.confirmSync" = true;
|
"git.confirmSync" = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue