From cadd11e2e72c9869c9d4d02b99018f757ec082a6 Mon Sep 17 00:00:00 2001 From: johannst Date: Sat, 21 Jan 2017 15:52:06 +0100 Subject: minor fixes --- .gitignore | 1 + bashrc | 3 ++- install | 6 +++--- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index c832b52..a97f71b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .cgdb/readline_history.txt +*.swp diff --git a/bashrc b/bashrc index c655b8f..d45ae59 100644 --- a/bashrc +++ b/bashrc @@ -20,6 +20,7 @@ bind -m vi-command 'Control-a:beginning-of-line' bind -m vi-command 'Control-e:end-of-line' bind -m vi-insert 'Control-a:beginning-of-line' bind -m vi-insert 'Control-e:end-of-line' +bind -m vi-command '"v":""' # disable opening tmp file #}}} #{{{ alias @@ -45,7 +46,7 @@ BCol_YellowOrange='\e[38;5;214m' #}}} #{{{ bash prompt -export PS1="\[${BCol_DarkRed}\]::\[${BCol_DarkOrange}\]\u\[${BCol_DarkRed}\]::\[${BCol_LightOrange}\]\H\[${BCol_LightGray}\] - \[${BCol_Yellow}\]\t\[${BCol_LightGray}\] - \[${BCol_LightBlue}\]\w\n\[${BCol_NoColor}\][\[${BCol_YellowOrange}\]$?\[${BCol_NoColor}\]] \[${BCol_BlueGray}\]>>\[${BCol_NoColor}\] " +export PS1="\[${BCol_DarkRed}\]::\[${BCol_DarkOrange}\]\u\[${BCol_DarkRed}\]::\[${BCol_LightOrange}\]\H\[${BCol_LightGray}\] - \[${BCol_Yellow}\]\t\[${BCol_LightGray}\] - \[${BCol_LightBlue}\]\w\n\[${BCol_NoColor}\][\[${BCol_YellowOrange}\]\${?}\[${BCol_NoColor}\]] \[${BCol_BlueGray}\]>>\[${BCol_NoColor}\] " #}}} #{{{ ls colors diff --git a/install b/install index 78f050a..64116ea 100755 --- a/install +++ b/install @@ -103,14 +103,14 @@ function xtermConfigInstaller() { function main() { # parse gInstallConfigFile to see what should be installed - configToInstall=() + local configToInstall=() while read line; do if [[ ! $line =~ ^[yYnN][[:blank:]]?- ]]; then continue fi - flag=$(echo $line | cut -d '-' -f 1 | sed 's/ //g') + local flag=$(echo $line | cut -d '-' -f 1 | sed 's/ //g') if [[ $flag =~ ^[yY]$ ]]; then - config=$(echo $line | cut -d '-' -f 2 | sed 's/ //g') + local config=$(echo $line | cut -d '-' -f 2 | sed 's/ //g') configToInstall+=("$config") fi done < $gInstallConfigFile -- cgit v1.2.3