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"
|
||||
"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
|
||||
|
|
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
|
||||
./broot
|
||||
./fish
|
||||
./ghostty
|
||||
./git
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue