Just adding and cleaning
This commit is contained in:
18
home-cli.nix
18
home-cli.nix
@@ -24,16 +24,22 @@ in
|
|||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
fd # `fd PATTERN`; `fd` is like ls-R; `-e ext` searches by extension; `-g` for glob; `-H` searches hidden files; `-u` for unrestricted; `fd -e jpg -x convert {} {.}.png`
|
fd # `fd PATTERN`; `fd` is like ls-R; `-e ext` searches by extension; `-g` for glob; `-H` searches hidden files; `-u` for unrestricted; `fd -e jpg -x convert {} {.}.png`
|
||||||
mosh # like ssh but better on spotty networks
|
mosh # like ssh but better on spotty networks
|
||||||
|
aider-chat
|
||||||
w3m
|
w3m
|
||||||
wget
|
wget
|
||||||
httpie
|
httpie # HTTPie CLI — modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more
|
||||||
|
monolith # CLI tool for saving complete web pages as a single HTML file
|
||||||
|
supabase-cli
|
||||||
ngrok
|
ngrok
|
||||||
ddev
|
ddev
|
||||||
# bitwarden-cli
|
# bitwarden-cli
|
||||||
mkcert
|
mkcert
|
||||||
gnupg
|
gnupg
|
||||||
rage
|
gitu # A TUI Git client inspired by Magit
|
||||||
|
rage # A simple, secure and modern file encryption tool (and Rust library) with small explicit keys, no config options, and UNIX-style composability
|
||||||
sd
|
sd
|
||||||
|
jq
|
||||||
|
sq
|
||||||
cacert
|
cacert
|
||||||
weechat
|
weechat
|
||||||
sttr # string operations. e.g. sttr md5 "Hello World"; sttr snake "ChangeCase"
|
sttr # string operations. e.g. sttr md5 "Hello World"; sttr snake "ChangeCase"
|
||||||
@@ -44,12 +50,14 @@ in
|
|||||||
nodejs
|
nodejs
|
||||||
pipx
|
pipx
|
||||||
yarn
|
yarn
|
||||||
php83
|
# php83
|
||||||
stack
|
stack
|
||||||
cargo
|
cargo
|
||||||
ruby
|
ruby
|
||||||
|
llvm
|
||||||
|
blade-formatter
|
||||||
# haskellPackages.ghcup
|
# haskellPackages.ghcup
|
||||||
php83Packages.composer
|
# php83Packages.composer
|
||||||
nodePackages.typescript-language-server
|
nodePackages.typescript-language-server
|
||||||
nodePackages.stylelint
|
nodePackages.stylelint
|
||||||
nodePackages.js-beautify
|
nodePackages.js-beautify
|
||||||
@@ -75,6 +83,8 @@ in
|
|||||||
"$HOME/.local/bin"
|
"$HOME/.local/bin"
|
||||||
"$HOME/.cargo/bin"
|
"$HOME/.cargo/bin"
|
||||||
"$HOME/.npm-global/bin"
|
"$HOME/.npm-global/bin"
|
||||||
|
"/opt/homebrew/bin"
|
||||||
|
"/Users/dustinswan/Downloads/roc_nightly-macos_apple_silicon-2024-10-09-bf5b13e237f"
|
||||||
];
|
];
|
||||||
|
|
||||||
xdg.enable = true;
|
xdg.enable = true;
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
home.file.gpg-agent = {
|
home.file.gpg-agent = {
|
||||||
target = ".gnupg/gpg-agent.conf";
|
target = ".gnupg/gpg-agent.conf";
|
||||||
text = ''
|
text = ''
|
||||||
|
pinentry-program ${pkgs.pinentry_mac}/Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac
|
||||||
default-cache-ttl 86400
|
default-cache-ttl 86400
|
||||||
max-cache-ttl 86400
|
max-cache-ttl 86400
|
||||||
'';
|
'';
|
||||||
|
|||||||
@@ -34,12 +34,14 @@
|
|||||||
{ key = "<leader>e"; action = "<cmd>Neotree toggle<cr>"; }
|
{ key = "<leader>e"; action = "<cmd>Neotree toggle<cr>"; }
|
||||||
{ key = "<leader>ff"; action = "<cmd>Telescope find_files<cr>"; }
|
{ key = "<leader>ff"; action = "<cmd>Telescope find_files<cr>"; }
|
||||||
{ key = "<leader>fr"; action = "<cmd>Telescope oldfiles<cr>"; }
|
{ key = "<leader>fr"; action = "<cmd>Telescope oldfiles<cr>"; }
|
||||||
|
{ key = "<leader>/"; action = "<cmd>Telescope live_grep<cr>"; }
|
||||||
{ key = "<leader>bd"; action = "<cmd>bdelete<cr>"; }
|
{ key = "<leader>bd"; action = "<cmd>bdelete<cr>"; }
|
||||||
{ key = "<S-l>"; action = "<cmd>bnext<cr>"; }
|
{ key = "<S-l>"; action = "<cmd>bnext<cr>"; }
|
||||||
{ key = "<S-h>"; action = "<cmd>bprev<cr>"; }
|
{ key = "<S-h>"; action = "<cmd>bprev<cr>"; }
|
||||||
];
|
];
|
||||||
|
|
||||||
plugins = {
|
plugins = {
|
||||||
|
avante.enable = true;
|
||||||
bufferline.enable = true;
|
bufferline.enable = true;
|
||||||
cmp = {
|
cmp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@@ -69,16 +71,23 @@
|
|||||||
servers = {
|
servers = {
|
||||||
eslint.enable = true;
|
eslint.enable = true;
|
||||||
html.enable = true;
|
html.enable = true;
|
||||||
lua-ls.enable = true;
|
lua_ls.enable = true;
|
||||||
nil-ls.enable = true;
|
nil_ls.enable = true;
|
||||||
# phpactor.enable = true;
|
# phpactor.enable = true;
|
||||||
intelephense.enable = true;
|
intelephense.enable = true;
|
||||||
|
intelephense.package = null;
|
||||||
# rust-analyzer.enable = true;
|
# rust-analyzer.enable = true;
|
||||||
tsserver.enable = true;
|
ts_ls.enable = true;
|
||||||
|
roc_ls.enable = true;
|
||||||
|
roc_ls.package = null;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
lsp-format.enable = true;
|
none-ls = {
|
||||||
|
enable = true;
|
||||||
|
sources.formatting.blade_formatter.enable = true;
|
||||||
|
sources.formatting.blade_formatter.package = null;
|
||||||
|
};
|
||||||
|
# lsp-format.enable = true;
|
||||||
lsp-lines.enable = true;
|
lsp-lines.enable = true;
|
||||||
neo-tree.enable = true;
|
neo-tree.enable = true;
|
||||||
notify.enable = true;
|
notify.enable = true;
|
||||||
@@ -92,13 +101,14 @@
|
|||||||
settings.org_default_notes_file = "~/Sync/Notes/Main.org";
|
settings.org_default_notes_file = "~/Sync/Notes/Main.org";
|
||||||
};
|
};
|
||||||
persistence.enable = true;
|
persistence.enable = true;
|
||||||
surround.enable = true;
|
vim-surround.enable = true;
|
||||||
telescope.enable = true;
|
telescope.enable = true;
|
||||||
tmux-navigator.enable = true;
|
tmux-navigator.enable = true;
|
||||||
todo-comments.enable = true;
|
todo-comments.enable = true;
|
||||||
treesitter.enable = true;
|
treesitter.enable = true;
|
||||||
trouble.enable = true;
|
trouble.enable = true;
|
||||||
ts-autotag.enable = true;
|
ts-autotag.enable = true;
|
||||||
|
web-devicons.enable = true;
|
||||||
which-key.enable = true;
|
which-key.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user