Miscellany
This commit is contained in:
parent
5d76b8ce01
commit
d7d155178c
|
@ -16,3 +16,6 @@ CFLAGS="-Wall -Werror -Wextra"
|
|||
alias cc="gcc ${CFLAGS}"
|
||||
alias update_ruby_build="git -C "$(rbenv root)"/plugins/ruby-build pull"
|
||||
alias irc="ssh kernighan -t tmux attach -t irc"
|
||||
alias krc="kamal app exec -i --reuse 'bin/rails c'"
|
||||
alias krd="kamal app exec -i --reuse 'bin/rails dbconsole'"
|
||||
alias krb="kamal app exec -i --reuse 'bash'"
|
||||
|
|
2
.bashrc
2
.bashrc
|
@ -104,6 +104,6 @@ if ! shopt -oq posix; then
|
|||
fi
|
||||
fi
|
||||
|
||||
eval "$(rbenv init - bash)"
|
||||
eval "$(~/.rbenv/bin/rbenv init - bash)"
|
||||
|
||||
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
br = branch
|
||||
cb = clone --bare
|
||||
cp = cherry-pick
|
||||
# Show all commits on the current branch but not develop
|
||||
curr = "!git log --no-merges \"$(git rev-parse --abbrev-ref HEAD)\" ^develop"
|
||||
# Show all commits on the current branch but not main
|
||||
curr = "!git log --no-merges \"$(git rev-parse --abbrev-ref HEAD)\" ^main"
|
||||
co = checkout
|
||||
cm = commit
|
||||
cma = commit --amend
|
||||
|
|
|
@ -4,7 +4,8 @@ windowrule = workspace 1, alacritty
|
|||
windowrule = workspace 2, firefox
|
||||
windowrule = workspace 2, qutebrowser
|
||||
windowrule = workspace 2, ^(.*)(Chrom)(.*)$
|
||||
windowrule = workspace 2, thunderbird
|
||||
windowrule = workspace 3, thunderbird
|
||||
windowrule = workspace 3, "flatpak run com.spotify.Client"
|
||||
|
||||
exec-once = eww daemon && eww open bar
|
||||
exec-once = qutebrowser
|
||||
|
|
|
@ -8,6 +8,7 @@ set.number = true
|
|||
set.relativenumber = true
|
||||
set.cursorline = true
|
||||
set.termguicolors = true
|
||||
set.grepprg = 'rg --vimgrep --smart-case'
|
||||
|
||||
-- Improve terminal setup
|
||||
vim.api.nvim_command("autocmd TermOpen * startinsert")
|
||||
|
|
Loading…
Reference in New Issue