sebacruz
9/15/2017 - 2:11 AM

Simple bash and vi configurations

Simple bash and vi configurations

set number
set cursorline
set colorcolumn=80
set list
set ruler
set ignorecase
set smartcase
set hlsearch
set showmatch
set mat=2
set foldcolumn=1
set showmode
set title
set expandtab
set smarttab
set shiftwidth=4
set tabstop=4
syntax enable
export PS1="\n\[$(tput bold)\]\[$(tput sgr0)\]\[\033[38;5;242m\]\A\[$(tput sgr0)\]\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput bold)\]\[$(tput sgr0)\]\[\033[38;5;81m\]\w\[$(tput sgr0)\]\[$(tput sgr0)\]\[\033[38;5;15m\]\n\[$(tput bold)\]\[$(tput sgr0)\]\[\033[38;5;78m\]\\$\[$(tput sgr0)\]\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]";

export EDITOR='vim';

export LANG='en_US.UTF-8';
export LC_ALL='en_US.UTF-8';

export GREP_OPTIONS='--color=auto';