new-features-and-fixes #11

Merged
sev merged 3 commits from new-features-and-fixes into master 5 years ago
  1. 9
      .bash_profile
  2. 5
      .vimrc

9
.bash_profile

@ -286,6 +286,10 @@ export HISTTIMEFORMAT="[%F %T] "
# Remove duplicates form .bash_history
export HISTCONTROL=ignoreboth:erasedups
# Enable colourful output for GCC 4.9+
# https://gcc.gnu.org/onlinedocs/gcc-4.9.2/gcc/Language-Independent-Options.html
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
__export_ps
__export_ls_colors
# shellcheck disable=SC2119
@ -311,3 +315,8 @@ if [[ -r "${HOME}/.ssh/.agent" ]]; then
source "${HOME}/.ssh/.agent" > /dev/null
fi
# Terraform
if [[ -n $(command -v terraform) ]]; then
export TF_DATA_DIR="${HOME}/.local/var/terraform"
fi

5
.vimrc

@ -3,8 +3,11 @@ set nocompatible
" Enable syntax higlighting
syntax on
" Set colorscheme
" Set 8 colour terminal
set t_Co=8
" Set colorscheme
colorscheme evening
" Tabs and spaces

Loading…
Cancel
Save