repos / dotfiles

my dotfiles

commit
bb57280
parent
5a5a568
author
Eric Bower
date
2025-09-18 07:43:17 -0400 EDT
chore: cfg changes
4 files changed,  +7, -6
M dot/npmrc
+2, -1
1@@ -1 +1,2 @@
2-prefix = ${HOME}/.npm-packages
3+prefix=${HOME}/.npm-packages
4+yes=true
M dot_config/fish/config.fish
+1, -2
 1@@ -35,8 +35,7 @@ abbr -a logs "ssh pipe sub /pico/log-drain -k | jq -r"
 2 abbr -a ash "autossh -M 0"
 3 abbr -a picodb "ssh -L 5432:localhost:5432 pico.ash.0"
 4 abbr -a gpt "llama-server -hf unsloth/gpt-oss-20b-GGUF:Q4_K_M -ngl 15 --host 0.0.0.0"
 5-abbr -a code "llama-server -hf openai/ggml-org_Qwen3-Coder-30B-A3B-Instruct-Q8_0-GGUF_qwen3-coder-30b-a3b-instruct-q8_0.gguf -ngl 15 --host 0.0.0.0"
 6-abbr -a adr "aider --model openai/ggml-org_Qwen3-Coder-30B-A3B-Instruct-Q8_0-GGUF_qwen3-coder-30b-a3b-instruct-q8_0.gguf --code-theme dracula"
 7+abbr -a code "llama-server -hf unsloth/Qwen3-Coder-30B-A3B-Instruct-GGUF:Q4_K_XL -ngl 15 --host 0.0.0.0 --jinja --threads -1 --ctx-size 32000 --temp 0.7 --min-p 0.0 --top-p 0.80 --top-k 20 --repeat-penalty 1.05 --context-shift"
 8 abbr -a zmount zfs mount -a
 9 abbr -a keys "keychain --eval --quiet --agents ssh,gpg ~/.ssh/id_ed25519 76D3FD02 | source"
10 abbr -a mdf uvx --with=mdformat-gfm --with=mdformat-frontmatter mdformat --wrap 80
M dot_config/foot/foot.ini
+3, -0
 1@@ -3,6 +3,9 @@ term=xterm-256color
 2 font=NotoMono Nerd Font:size=14,Noto Color Emoji:size=14,monospace:size=14
 3 include=/usr/share/foot/themes/dracula
 4 pad=6x4
 5+[colors]
 6+# set to neovim default colorscheme bg color
 7+background=14161b
 8 [url]
 9 launch=xdg-open ${url}
10 [key-bindings]
M dot_config/nvim/init.lua
+1, -3
 1@@ -6,6 +6,7 @@
 2     - single file
 3     - use native nvim features (>= v0.12)
 4     - use default keybindings unless painful otherwise
 5+    - use default colorscheme
 6     - plugins must be integral to workflow
 7 ]]
 8 local o = vim.opt
 9@@ -177,7 +178,6 @@ local function setup_treesitter()
10 end
11 
12 vim.pack.add({
13-	"https://github.com/Mofiqul/dracula.nvim",
14 	{ src = "https://github.com/nvim-treesitter/nvim-treesitter", version = "main" },
15 	"https://github.com/nvim-treesitter/nvim-treesitter-context",
16 	"https://github.com/neovim/nvim-lspconfig",
17@@ -187,8 +187,6 @@ vim.pack.add({
18 	"https://github.com/tpope/vim-fugitive",
19 })
20 
21-require("dracula").setup()
22-vim.cmd([[colorscheme dracula]])
23 setup_treesitter()
24 setup_lsp()
25 setup_fzf()