mirror of
https://github.com/He4eT/dotfiles.git
synced 2026-05-04 23:47:23 +00:00
124 lines
2.9 KiB
Bash
124 lines
2.9 KiB
Bash
setxkbmap -layout 'us,ru' -option 'grp:caps_toggle'
|
|
xset -b
|
|
clear
|
|
|
|
# Common settings
|
|
|
|
export PATH=$HOME/apps/bin:$PATH
|
|
|
|
if [[ "$NVIM" ]]; then
|
|
export EDITOR="/usr/bin/nvim"
|
|
else
|
|
export EDITOR="/usr/bin/vim"
|
|
fi
|
|
|
|
# NVM
|
|
|
|
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
|
|
# ZSH settings
|
|
|
|
export ZSH="/home/odd/.oh-my-zsh"
|
|
ZSH_CUSTOM="/home/odd/dotfiles/zsh"
|
|
|
|
# https://github.com/ohmyzsh/ohmyzsh/issues/12328#issuecomment-2043492331
|
|
zstyle ':omz:alpha:lib:git' async-prompt no
|
|
|
|
ZSH_THEME="custom-minimal"
|
|
CASE_SENSITIVE="false"
|
|
|
|
ZSH_AUTOSUGGEST_ACCEPT_WIDGETS=(end-of-line)
|
|
|
|
plugins=(
|
|
git
|
|
fancy-ctrl-z
|
|
fzf
|
|
zsh-autosuggestions
|
|
)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
# Go to Vim
|
|
|
|
open-in-editor() {
|
|
zle edit-command-line
|
|
zle end-of-line
|
|
}
|
|
zle -N open-in-editor
|
|
bindkey '^v' open-in-editor
|
|
|
|
# Aliases
|
|
|
|
alias fakemsg='echo "$(curl -s https://whatthecommit.com/index.txt)"'
|
|
|
|
alias st='fastfetch -c ~/dotfiles/fastfetch/st.jsonc'
|
|
alias status='clear && fastfetch -c ~/dotfiles/fastfetch/status.jsonc'
|
|
alias kb='setxkbmap -layout us,ru -option "grp:caps_toggle"'
|
|
|
|
# Commands
|
|
|
|
alias :q='exit'
|
|
alias :timestamps='omz theme use custom-groups'
|
|
alias :notimestamps='omz theme use custom-minimal'
|
|
|
|
# Apps
|
|
|
|
alias gzdoom='cd /home/odd/.var/app/org.zdoom.GZDoom/.config/gzdoom/iwads \
|
|
&& flatpak run org.zdoom.GZDoom'
|
|
alias ncdu='ncdu --color off'
|
|
alias lynx='WWW_HOME=https://duckduckgo.com \
|
|
lynx -accept_all_cookies -nocolor -nopause -show_cursor:true -tna -vikeys'
|
|
|
|
# Aliases for nmtui @see https://lemmy.world/post/17689127
|
|
|
|
NMTUI_COLORS='
|
|
root=black,default;
|
|
actlistbox=black,lightgray;
|
|
actsellistbox=black,yellow;
|
|
'
|
|
alias nmtui='NEWT_COLORS="$NMTUI_COLORS" nmtui'
|
|
alias nmtui-connect='NEWT_COLORS="$NMTUI_COLORS" nmtui-connect'
|
|
|
|
## Git
|
|
|
|
alias cdg='cd $(git rev-parse --show-toplevel 2>/dev/null)'
|
|
alias ga.='ga . && gst'
|
|
alias gcmsgrnd='git commit -m "$(fakemsg)"'
|
|
alias ghist="git log --name-only --pretty='' | sed -e '/^\\s*$/d' | awk '!seen[\$0]++' | less"
|
|
alias cdgr='cd $(git rev-parse --show-toplevel)'
|
|
|
|
## Servers
|
|
|
|
alias here-http='hostname -I && python3 -m http.server'
|
|
alias here-http-cors='npx http-server -p 8080 --cors'
|
|
alias here-https='PORT=8080 npx https-localhost'
|
|
|
|
## Ollama
|
|
|
|
alias summon='clear && docker exec -it ollama ollama run'
|
|
alias summonable='docker exec -it ollama ollama list'
|
|
|
|
## Music
|
|
|
|
alias somafm='npx ~/trash/fuzzsoma'
|
|
|
|
## Copy from terminal
|
|
# See .XResources
|
|
|
|
alias last-terminal-screenshot='\
|
|
vim \
|
|
-c "norm G" \
|
|
-c "norm H" \
|
|
-c "set relativenumber" \
|
|
/tmp/urxvt-screen-content.txt
|
|
'
|
|
|
|
alias yank='\
|
|
xdotool keydown shift keydown Print ;\
|
|
xdotool keyup Print keyup shift ;\
|
|
last-terminal-screenshot ;\
|
|
'
|
|
|
|
alias f2c='xclip -selection clipboard <'
|