quinta-feira, 13 de fevereiro de 2014

Bash and VIM profile (.bashrc and .vimrc)

Configurando um profile Bash no Linux/Unix
Configuring a Bash profile in Linux/Unix

 - *Unix

Quando iniciar o Bash o profile será carregado através do .bashrc
When start the Bash, the profile will be loaded from .bashrc

$HOME/.bashrc
PS1='[\[\033[01;36m\]\h\[\033[00m\]:\[\033[01;32m\]$(pwd)\[\033[00m\]]\$ '
#if you have VIM installed another place
#export VIM="/home/guest/sfw/share/vim"
 

#set defaults
export EDITOR="vim"
export PAGER="less"
export TERM="xterm"
 

alias ls="ls -h --color=auto --time-style='+%Y-%m-%d %H:%M'"
alias vi="vim"

Quando iniciar o VIM, o profile será carregado através do .bashrc
When start the VIM, the profile will be loaded from .vimrc

 $HOME/.vimrc
syntax on
colorscheme evening
set background=dark
set nu
set autoindent
set ts=3 " Quantidade de espaço do TAB
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%04l,%04v][%p%%]\ [LEN=%L] " Define as informações da barra de status.
set laststatus=2 " Exibe a barra de status.
hi statusline term=bold cterm=bold ctermfg=7 ctermbg=4 " Define a cor da barra de status.
set hlsearch " realça a pesquina encontrada
set incsearch " realça o texto da pesquisa
set backspace=indent,eol,start " Permite que o backspace apague em modo de insert

"acentuação em 
Português no vim - iso-8859-1. latin1, utf-8, pt_BR, pt_BR.UTF-8
"no bash: export LANG=latin1
set encoding=latin1
set fileencodings=latin1
set nocompatible
set termencoding=utf-8

* To change the home directory: export HOME="/new/directory"

Nenhum comentário:

Postar um comentário