Thursday, February 11, 2016

Personalized Bash Shell, VIM, and other settings...

I want to capture my very simple, yet I think clean, settings I like to use.

Here is my .bashrc

---------------------------------------------------------
# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

# User specific aliases and functions
LS_COLORS='di=1;33' ; export LS_COLORS

PROMPT_DIRTRIM=3
export PROMPT_DIRTRIM

PS1="[\u \w]\$"

---------------------------------------------------------

This sets some colors and makes the prompt show the directories in a way that I find useful because I am always deep into the directory structure.

[user1 ~/.../opt/solr-5.4.1/example]$

Here is my .vimrc

---------------------------------------------------------
colorscheme desert
---------------------------------------------------------







No comments: