diff options
author | Vitor Gonçalves <vitorg@tilde.team> | 2023-05-28 21:55:11 -0300 |
---|---|---|
committer | Vitor Gonçalves <vitorg@tilde.team> | 2023-05-28 21:55:11 -0300 |
commit | 8f3d9c6218fcaf79edf6246466e68136d13dc146 (patch) | |
tree | 4556c5ea0f1e1d996bfc0ea5b91c8aa1b93736df /dot_config/bash | |
parent | 29c09cfac112baacfe7398d0563cb4b667b2ca3a (diff) | |
download | dots-8f3d9c6218fcaf79edf6246466e68136d13dc146.tar.gz |
feat: changed shebangs to vim filetype stuff so that it looks pretty without bad code
Diffstat (limited to 'dot_config/bash')
-rw-r--r-- | dot_config/bash/aliases | 2 | ||||
-rw-r--r-- | dot_config/bash/prompt | 2 | ||||
-rw-r--r-- | dot_config/bash/rc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/dot_config/bash/aliases b/dot_config/bash/aliases index ef03df4..9b63ce2 100644 --- a/dot_config/bash/aliases +++ b/dot_config/bash/aliases @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +# vim: ft=sh alias ls="exa -laH --group-directories-first" alias la="exa -aH --group-directories-first" diff --git a/dot_config/bash/prompt b/dot_config/bash/prompt index 8e914a8..f65f096 100644 --- a/dot_config/bash/prompt +++ b/dot_config/bash/prompt @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +# vim: ft=sh # get current branch in git repo function parse_git_branch() { diff --git a/dot_config/bash/rc b/dot_config/bash/rc index 320f597..40a6b72 100644 --- a/dot_config/bash/rc +++ b/dot_config/bash/rc @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +# vim: ft=sh shopt -s autocd shopt -s histappend |