This commit is contained in:
Jaroslaw Konik 2026-07-03 22:14:02 +02:00
parent 0da2c62dfe
commit 4e4c0e3e17
3 changed files with 37 additions and 23 deletions

View file

@ -27,3 +27,5 @@ echo "You are here to witness."
echo "色即是空 空即是色" echo "色即是空 空即是色"
eval "$(direnv hook bash)" eval "$(direnv hook bash)"
export PATH="$HOME/.npm-global/bin:$PATH" export PATH="$HOME/.npm-global/bin:$PATH"
export PATH="$HOME/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"

View file

@ -795,6 +795,18 @@ vim.api.nvim_create_autocmd('BufEnter', {
end, end,
}) })
-------------------------------------------------------------------------------
-- C
-------------------------------------------------------------------------------
vim.api.nvim_create_autocmd("FileType", {
pattern = "c",
callback = function()
vim.opt_local.tabstop = 2
vim.opt_local.shiftwidth = 2
vim.opt_local.softtabstop = 2
vim.opt_local.expandtab = true
end,
})
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- Golang -- Golang
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
@ -827,23 +839,23 @@ vim.api.nvim_create_autocmd('BufEnter', {
end, end,
}) })
local function toggle_checkbox() local function toggle_checkbox()
local line = vim.api.nvim_get_current_line() local line = vim.api.nvim_get_current_line()
local new local new
if line:match('%[ %]') then if line:match('%[ %]') then
new = line:gsub('%[ %]', '[x]', 1) new = line:gsub('%[ %]', '[x]', 1)
elseif line:match('%[x%]') then elseif line:match('%[x%]') then
new = line:gsub('%[x%]', '[ ]', 1) new = line:gsub('%[x%]', '[ ]', 1)
elseif line:match('^(%s*[-*+])%s+(.*)') then elseif line:match('^(%s*[-*+])%s+(.*)') then
-- bare list item → promote to checkbox -- bare list item → promote to checkbox
new = line:gsub('^(%s*[-*+])%s+', '%1 [ ] ', 1) new = line:gsub('^(%s*[-*+])%s+', '%1 [ ] ', 1)
else else
return return
end end
vim.api.nvim_set_current_line(new) vim.api.nvim_set_current_line(new)
end end
vim.keymap.set('n', '<leader>tc', toggle_checkbox, vim.keymap.set('n', '<leader>tc', toggle_checkbox,
{ desc = 'Toggle markdown checkbox', buffer = false }) { desc = 'Toggle markdown checkbox', buffer = false })
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- Comments -- Comments
@ -858,10 +870,10 @@ vim.api.nvim_create_autocmd('BufEnter', {
-- Refreshing -- Refreshing
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
vim.api.nvim_create_autocmd({ "FocusGained", "BufEnter", "CursorHold", "CursorHoldI" }, { vim.api.nvim_create_autocmd({ "FocusGained", "BufEnter", "CursorHold", "CursorHoldI" }, {
pattern = "*", pattern = "*",
callback = function() callback = function()
if vim.fn.mode() ~= "c" and vim.fn.getcmdwintype() == "" then if vim.fn.mode() ~= "c" and vim.fn.getcmdwintype() == "" then
vim.cmd("checktime") vim.cmd("checktime")
end end
end, end,
}) })

View file

@ -31,9 +31,9 @@ if-shell 'upower -i /org/freedesktop/UPower/devices/battery_BAT0 | grep -q "ener
} }
set -ag @minimal-tmux-status-right-extra "#[fg=color150]#[bg=color150,fg=black]CPU:#(uptime | awk -F'load average:' '{ print \$2 }' | cut -d',' -f1)#[fg=color150,bg=default]#[bg=default] " set -ag @minimal-tmux-status-right-extra "#[fg=color150]#[bg=color150,fg=black]CPU:#(uptime | awk -F'load average:' '{ print \$2 }' | cut -d',' -f1)#[fg=color150,bg=default]#[bg=default] "
set -ag @minimal-tmux-status-right-extra "#[fg=color150]#[bg=color150,fg=black]RAM:#(free -h | awk '/^Mem:/ {print \$3 \"/\" \$2}')#[fg=color150,bg=default]#[bg=default] " set -ag @minimal-tmux-status-right-extra "#[fg=color150]#[bg=color150,fg=black]RAM:#(free -h | awk '/^Mem:/ {print \$3 \"/\" \$2}')#[fg=color150,bg=default]#[bg=default] "
if-shell 'command -v nvidia-smi' { # if-shell 'command -v nvidia-smi' {
set -ag @minimal-tmux-status-right-extra "#[fg=color150]#[bg=color150,fg=black]GPU: #(nvidia-smi --query-gpu=utilization.gpu --format=csv,noheader,nounits)%#[fg=color150,bg=default]#[bg=default] " # set -ag @minimal-tmux-status-right-extra "#[fg=color150]#[bg=color150,fg=black]GPU: #(nvidia-smi --query-gpu=utilization.gpu --format=csv,noheader,nounits)%#[fg=color150,bg=default]#[bg=default] "
} # }
set -ag @minimal-tmux-status-right-extra "#[fg=color150]#[bg=color150,fg=black]#(date +"%Y-%m-%dT%H:%M")#[fg=color150,bg=default]#[bg=default]" set -ag @minimal-tmux-status-right-extra "#[fg=color150]#[bg=color150,fg=black]#(date +"%Y-%m-%dT%H:%M")#[fg=color150,bg=default]#[bg=default]"
set -g @minimal-tmux-status-left-extra "#{pane_title}" set -g @minimal-tmux-status-left-extra "#{pane_title}"
set -g @minimal-tmux-use-arrow true set -g @minimal-tmux-use-arrow true