This file contains hidden or 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
| "$schema" = 'https://starship.rs/config-schema.json' | |
| # Robbyrussel like theme | |
| format = """$character$directory$git_branch""" | |
| add_newline = false | |
| palette = 'gruvbox_dark' | |
| [palettes.gruvbox_light] | |
| blue = '#076678' |
This file contains hidden or 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
| # Enable ignore case | |
| set completion-ignore-case On | |
| # Show auto-completion list automatically, without double tab | |
| set show-all-if-ambiguous On | |
| # Intelligent "Up and Down" arrow searching | |
| "\e[A": history-search-backward | |
| "\e[B": history-search-forward |
This file contains hidden or 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
| [push] | |
| default = simple | |
| autoSetupRemote = true | |
| [init] | |
| defaultBranch = main | |
| [diff] | |
| tool = nvimdiff |
This file contains hidden or 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
| # History settings | |
| export HISTFILE="$HOME/.zsh_history" | |
| export HISTSIZE=5000 | |
| export SAVEHIST=$HISTSIZE | |
| export HISTFILESIZE=10000 | |
| export HISTTIMEFORMAT="%F %T " # add timestamp to history | |
| # Zsh specific history options | |
| setopt appendhistory sharehistory hist_ignore_space hist_ignore_all_dups hist_save_no_dups hist_find_no_dups |
This file contains hidden or 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
| # If not running interactively, don't do anything | |
| [[ $- != *i* ]] && return | |
| # Bash Completion Check | |
| # shellcheck disable=SC1091 | |
| [[ -f /usr/share/bash-completion/bash_completion ]] && . /usr/share/bash-completion/bash_completion | |
| # shellcheck disable=SC1091 | |
| [[ -f /etc/bash_completion ]] && . /etc/bash_completion | |
| # Adding home binary path |
This file contains hidden or 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
| # See the pacman.conf(5) manpage for option and repository directives | |
| # Paste this file in /etc/ | |
| # This is a base options for pacman.conf | |
| [options] | |
| Color | |
| ILoveCandy | |
| VerbosePkgLists | |
| HoldPkg = pacman glibc ly | |
| Architecture = auto |