mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 22:51:21 +00:00
Personal preferences, bash completion and configs
This commit is contained in:
parent
d04c49190a
commit
ab876da423
3 changed files with 13 additions and 1 deletions
|
@ -1,3 +1,14 @@
|
||||||
if [ -e $HOME/.bash_aliases ]; then
|
if [ -e $HOME/.bash_aliases ]; then
|
||||||
source $HOME/.bash_aliases
|
source $HOME/.bash_aliases
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if command -v fzf > /dev/null; then
|
||||||
|
source <(fzf --bash)
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v rg > /dev/null; then
|
||||||
|
source <(rg --generate=complete-bash)
|
||||||
|
fi
|
||||||
|
|
||||||
|
PROMPT_DIRTRIM=2
|
||||||
|
PS1='\[\033[0;33m\][\u@\h:\w]\$\[\033[0m\] '
|
||||||
|
|
|
@ -12,7 +12,7 @@ return {
|
||||||
color_scheme = "OneHalfDark",
|
color_scheme = "OneHalfDark",
|
||||||
|
|
||||||
-- Set window transparency
|
-- Set window transparency
|
||||||
window_background_opacity = 0.9,
|
window_background_opacity = 0.95,
|
||||||
|
|
||||||
-- Hide tab bar if there's only one tab
|
-- Hide tab bar if there's only one tab
|
||||||
hide_tab_bar_if_only_one_tab = true,
|
hide_tab_bar_if_only_one_tab = true,
|
||||||
|
|
|
@ -87,6 +87,7 @@
|
||||||
curl
|
curl
|
||||||
fzf
|
fzf
|
||||||
jq
|
jq
|
||||||
|
ripgrep
|
||||||
];
|
];
|
||||||
environment.variables = {
|
environment.variables = {
|
||||||
EDITOR = "vim";
|
EDITOR = "vim";
|
||||||
|
|
Loading…
Reference in a new issue