Updated vimrc and bashrc.
This commit is contained in:
parent
66b854cba2
commit
4b91d7b67a
2 changed files with 19 additions and 0 deletions
15
profile
15
profile
|
@ -23,5 +23,20 @@ set_prompt() {
|
|||
PS1="${TITLEBAR}$BLUE[\t]\`$FAILURE_COLOR\` \u@\h> $NO_COLOR"
|
||||
}
|
||||
|
||||
#sets the PS1 prompt
|
||||
set_prompt
|
||||
|
||||
# makes ls print pretty
|
||||
alias ls="ls --color=auto"
|
||||
|
||||
# something with keyword completion
|
||||
. /etc/bash_completion
|
||||
|
||||
# default editor
|
||||
export EDITOR=vim
|
||||
|
||||
# set history
|
||||
export HISTSIZE=1000
|
||||
export HISTFILESIZE=1000
|
||||
export HISTCONTROL=ignoredups
|
||||
|
||||
|
|
4
vimrc
4
vimrc
|
@ -10,6 +10,10 @@ set winminwidth=20
|
|||
set winwidth=100
|
||||
set winheight=20
|
||||
|
||||
" Syntax highlighting
|
||||
syntax on
|
||||
|
||||
" Wrapping settings
|
||||
set nowrap " nowrap makes the lines not wrap
|
||||
" set wrap " wrap makes the lines wrap
|
||||
set linebreak
|
||||
|
|
Loading…
Reference in a new issue