first commit
This commit is contained in:
commit
b2deebfffc
9 changed files with 234 additions and 0 deletions
15
files/profile.d/00-bash.sh
Normal file
15
files/profile.d/00-bash.sh
Normal file
|
@ -0,0 +1,15 @@
|
|||
## custom bash changes
|
||||
# colorful bash
|
||||
force_color_prompt=yes
|
||||
export LS_OPTIONS='--color=auto'
|
||||
eval "`dircolors`"
|
||||
# aliases
|
||||
alias l='ls $LS_OPTIONS -la'
|
||||
alias ll='ls $LS_OPTIONS -l'
|
||||
alias vi='vim'
|
||||
alias docker-compose='docker compose'
|
||||
# search history with keys
|
||||
bind '"\e[A": history-search-backward'
|
||||
bind '"\e[B": history-search-forward'
|
||||
bind '"\e[5~": history-search-backward'
|
||||
bind '"\e[6~": history-search-forward'
|
10
files/vim/vimrc.local
Normal file
10
files/vim/vimrc.local
Normal file
|
@ -0,0 +1,10 @@
|
|||
set nocompatible
|
||||
set ignorecase
|
||||
set hlsearch
|
||||
set showmatch
|
||||
set wrap
|
||||
set mouse-=a
|
||||
set autoindent
|
||||
syntax on
|
||||
highlight Comment ctermfg=LightCyan
|
||||
let g:skip_defaults_vim = 1
|
Loading…
Add table
Add a link
Reference in a new issue