Last active
November 2, 2024 21:01
-
-
Save aditya-r-m/ae56e745005175b0c0dbc74e4b1d6043 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PS1='\[\033[01;38;5;4m\]\W \[\033[01;38;5;6m\]: \[\033[00m\]' | |
bind -s 'set completion-ignore-case on' | |
alias tx='tmux new-session \; set -s escape-time 0 \; split-window -h -p 63 \; attach' | |
alias sd='cd $(find * -type d | fzf)' | |
alias tx='tmux new-session \; set -s escape-time 0 \; split-window -h -p 63 \; attach' | |
alias gs='git status' | |
alias gd='git diff --word-diff' | |
alias ga='git add -A' | |
alias gc='git commit' | |
alias gp='git push' | |
alias gl='git log' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
theme = "github_light_high_contrast" | |
[keys.normal] | |
w = ":w" | |
q = ":wq" | |
r = ":reload" | |
x = ["extend_line_below","select_mode"] | |
[editor] | |
mouse = true | |
true-color = true | |
line-number = "relative" | |
[editor.auto-pairs] | |
'(' = ')' | |
'{' = '}' | |
'[' = ']' | |
'"' = '"' | |
[keys.select] | |
j = "extend_line_below" | |
k = "extend_line_above" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment