]> git.zndr.dk Git - dotfiles.git/commitdiff
Bash history cleanup
authorJannik ZANDER <jzander@grundfos.com>
Thu, 30 Jun 2016 18:49:49 +0000 (20:49 +0200)
committerJannik ZANDER <jzander@grundfos.com>
Thu, 30 Jun 2016 18:49:49 +0000 (20:49 +0200)
.config/bash/aliases
.config/bash/options
.config/bash/prompt.bash
.config/git/attributes
.config/git/config
.config/profile/environ.sh
.editorconfig
.vimrc

index 1713e046f027f9bf03fa44b9a0e53101ff7a66c7..19859cd1fba0051a1e749d19a53faaf40c65fab6 100644 (file)
@@ -94,14 +94,5 @@ alias startvnc4='vnc4server -geometry 1870x980 -depth 24'
 #alias python='/usr/local/bin/python3'
 alias git_local='git --git-dir=.git_local'
 alias dotfiles='git --git-dir=$HOME/.dotfiles --work-tree=$HOME'
+alias vcbuild='"C:/Program Files (x86)/Microsoft Visual Studio 9.0/VC/vcpackages/vcbuild.exe"'
 
-# alias for genibus
-alias gf='gf.py'
-alias com1='GENIsnus_1_lin_pr_tgm.exe COM1 9600 log 5'
-alias com2='GENIsnus_1_lin_pr_tgm.exe COM2 9600 log 5'
-alias com3='GENIsnus_1_lin_pr_tgm.exe COM3 9600 log 5'
-alias com4='GENIsnus_1_lin_pr_tgm.exe COM4 9600 log 5'
-alias com5='GENIsnus_1_lin_pr_tgm.exe COM5 9600 log 5'
-alias com6='GENIsnus_1_lin_pr_tgm.exe COM6 9600 log 5'
-alias com7='GENIsnus_1_lin_pr_tgm.exe COM7 9600 log 5'
-alias com8='GENIsnus_1_lin_pr_tgm.exe COM8 9600 log 5'
index 284a673f982739e31ebcc5ebdd38732a51282f60..3081bae570126b16c0fc8f4e2a56d98c77e3ae47 100644 (file)
@@ -2,7 +2,7 @@
 shopt -s nocaseglob;
 
 # Append to the Bash history file, rather than overwriting it
-shopt -s histappend;
+#shopt -s histappend;
 
 # Autocorrect typos in path names when using `cd`
 shopt -s cdspell;
index 38c2e0e26c59c14c3ede03c937a6fa1e4b9d8ad5..40a0a34c9b1a5994096046d03dbb87d9f83fbef9 100644 (file)
@@ -106,6 +106,13 @@ set_prompts()
 set_prompts
 unset set_prompts
 
+# When the shell exits, append to the history file instead of overwriting it
+shopt -s histappend
+# Larger bash history
+export HISTFILESIZE=10000;
+export HISTSIZE=5000;
+export HISTCONTROL=ignoreboth:erasedups
+export HISTIGNORE="ll:ls:cd:cd -:pwd:exit:date:* --help";
 # Whenever displaying the prompt, write the previous line to disk
-export PROMPT_COMMAND="history -a";
+export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"
 
index b00b9208e1ab0b4f8b51f04451f9d47e04aeb32c..bda67e7d0e8aa84ee65d85131523d8540c89e895 100644 (file)
@@ -2,8 +2,8 @@
 *           text=auto
 
 # Text files that should be normalized (CRLF => LF)
-*.c         text
-*.h         text
+#*.c         text
+#*.h         text
 
 # Text files with fixed EOL=LF
 *.sh        text eol=LF
index a6bd56d2eca03c0a0c727a323104e66f15e4ab15..6445656cabfa2027c51dee41510814f67290daba 100644 (file)
@@ -95,6 +95,5 @@
   excludesfile = ~/.config/git/ignore
   attributesFile = ~/.config/git/attributes
   editor = vim
-  #autocrlf = false
 [include]
   path = ~/.config/git/config_local
index ec177f4066750207bdbb9da0f02f1dfb6f066d6f..b4f75b988d5ab719089167a8d5943da914f46d85 100644 (file)
@@ -10,11 +10,6 @@ export PAGER='less -eFRX'
 export MANPAGER="less -eFRX"
 export BROWSER='lynx -vikeys -use_mouse'
 
-# Larger bash history (allow 32³ entries; default is 500)
-export HISTSIZE=32768;
-export HISTFILESIZE=$HISTSIZE;
-export HISTCONTROL=ignoreboth;
-export HISTIGNORE="ls:cd:cd -:pwd:exit:date:* --help";
 
 # Prefer US language and UTF-8
 export LANG="en_US.UTF-8";
index 2150195c3efae730eb7889dd230d89f25024573e..cb2626d6af6edc20a558e4b65f80623a79c69563 100644 (file)
@@ -5,7 +5,17 @@ root = true
 [*]
 indent_style = space
 indent_size = 2
-end_of_line = lf
 charset = utf-8
 trim_trailing_whitespace = true
 insert_final_newline = true
+# Windows-style newlines with a newline ending every file
+#end_of_line = crlf
+# Unix-style newlines with a newline ending every file
+#end_of_line = lf
+
+[*.py]
+indent_size = 4
+
+[Makefile]
+indent_style = tab
+
diff --git a/.vimrc b/.vimrc
index 75598d18e8338c739238d1cb03c0a5c021f7bd5b..77da337753f779fafcb41407285676052872c690 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -20,8 +20,9 @@ set runtimepath+=~/.cache/vim
 
 " section: plugins {{{1
 " ---------------------
-silent call plug#begin('~/.cache/vim/plugged')
+"silent call plug#begin('~/.cache/vim/plugged')
 
+call plug#begin('~/.cache/vim/plugged')
 "Plug 'tpope/vim-sensible'
 "Plug 'tpope/vim-ragtag'
 Plug 'tpope/vim-repeat'
@@ -216,6 +217,6 @@ if (&t_Co > 2 || has("gui_running")) && has("syntax")
  endif
 " }}}1
 
-if filereadable(expand('~/.config/vim/vimrc_local'))
-  source ~/.config/vim/vimrc_local
+if filereadable(expand('~/.vimrc_local'))
+  source ~/.vimrc_local
 endif