minor changes
This commit is contained in:
parent
d54f5cebe5
commit
3574e2e515
|
|
@ -1,6 +1,6 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# File .bash_aliases
|
# File .bash_aliases
|
||||||
# Jonas Mitschang - jonen@mitschang.net
|
# jul.io
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
# ssh connections to servers
|
# ssh connections to servers
|
||||||
|
|
@ -9,7 +9,7 @@ alias picosrv='ssh jscharrenbach@picosrv1'
|
||||||
# ls aliases
|
# ls aliases
|
||||||
alias l='ls -l'
|
alias l='ls -l'
|
||||||
alias lla='ls -htlr -A'
|
alias lla='ls -htlr -A'
|
||||||
alias ll='ls -la'
|
alias la='ls -la'
|
||||||
|
|
||||||
# change directory
|
# change directory
|
||||||
alias ..='cd ..'
|
alias ..='cd ..'
|
||||||
|
|
@ -27,8 +27,8 @@ go(){
|
||||||
}
|
}
|
||||||
|
|
||||||
#start tmux with 256 colors every time
|
#start tmux with 256 colors every time
|
||||||
alias tmux="tmux -2"
|
#alias tmux="tmux -2"
|
||||||
alias tmxa="tmux attach"
|
#alias tmxa="tmux attach"
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
alias px="ps auxf"
|
alias px="ps auxf"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# File .bash_profile
|
# File .bash_profile
|
||||||
# ~/.bash_profile: executed by bash for login shells
|
# ~/.bash_profile: executed by bash for login shells
|
||||||
# Jonas Mitschang - jonen@mitschang.net
|
# jul.io
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
# set variable identifying the chroot you work in
|
# set variable identifying the chroot you work in
|
||||||
|
|
|
||||||
3
.bashrc
3
.bashrc
|
|
@ -1,6 +1,6 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# File .bashrc
|
# File .bashrc
|
||||||
# Jonas Mitschang - jonen@mitschang.net
|
# jul.io
|
||||||
###############################################################################
|
###############################################################################
|
||||||
umask 022
|
umask 022
|
||||||
|
|
||||||
|
|
@ -24,7 +24,6 @@ if [ -d ~/.dot ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export COLORTERM=1
|
export COLORTERM=1
|
||||||
#export GREP_OPTIONS='--color=auto'
|
|
||||||
|
|
||||||
# prefered editor
|
# prefered editor
|
||||||
export EDITOR=vi
|
export EDITOR=vi
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
###############################################################
|
||||||
|
# File: .bashrc_local
|
||||||
|
# jul.io
|
||||||
|
###############################################################
|
||||||
# Some settings stolen from sensible.bash
|
# Some settings stolen from sensible.bash
|
||||||
# Automatically trim long paths in the prompt (requires Bash 4.x)
|
# Automatically trim long paths in the prompt (requires Bash 4.x)
|
||||||
#PROMPT_DIRTRIM=2
|
#PROMPT_DIRTRIM=2
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,7 @@
|
||||||
|
###############################################################
|
||||||
|
# File: .bashrc_local
|
||||||
|
# jul.io
|
||||||
|
###############################################################
|
||||||
# I want 256 colors everywhere
|
# I want 256 colors everywhere
|
||||||
# set -g default-terminal "screen-256-color"
|
# set -g default-terminal "screen-256-color"
|
||||||
|
|
||||||
|
|
|
||||||
14
.vimrc
14
.vimrc
|
|
@ -1,16 +1,19 @@
|
||||||
"------------------------------------------------------------------------------
|
"------------------------------------------------------------------------------
|
||||||
" File .vimrc
|
" File .vimrc
|
||||||
" Jonas Mitschang - jonen@mitschang.net
|
" jul.io
|
||||||
"------------------------------------------------------------------------------
|
"------------------------------------------------------------------------------
|
||||||
set nocompatible " use vim defaults
|
set nocompatible " use vim defaults
|
||||||
syntax on " use syntax highlighting
|
syntax on " use syntax highlighting
|
||||||
set background=dark " when using black background terminal
|
set background=dark " when using black background terminal
|
||||||
set relativenumber " relative line numbers! How cool is that?!
|
|
||||||
set number " line numbers
|
set number " line numbers
|
||||||
|
set relativenumber " relative line numbers! How cool is that?!
|
||||||
|
|
||||||
set clipboard=unnamed
|
set clipboard=unnamed
|
||||||
set backspace=indent,eol,start " more powerful backspacing
|
set backspace=indent,eol,start " more powerful backspacing
|
||||||
set autoindent " always set autoindenting on
|
set autoindent " always set autoindenting on
|
||||||
set formatoptions+=t
|
set formatoptions+=t
|
||||||
|
|
||||||
set nobackup " Don't keep a backup file
|
set nobackup " Don't keep a backup file
|
||||||
set viminfo='20,\"50 " read/write a .viminfo file, don't store more than
|
set viminfo='20,\"50 " read/write a .viminfo file, don't store more than
|
||||||
" 50 lines of registers
|
" 50 lines of registers
|
||||||
|
|
@ -21,14 +24,19 @@ set ignorecase " Do case insensitive matching
|
||||||
set smartcase " When searching with Uppercase Letters be Case-Sensitive, otherwise don't be
|
set smartcase " When searching with Uppercase Letters be Case-Sensitive, otherwise don't be
|
||||||
set incsearch " Incremental search
|
set incsearch " Incremental search
|
||||||
set hlsearch " Search highlight
|
set hlsearch " Search highlight
|
||||||
|
|
||||||
set noexpandtab
|
set noexpandtab
|
||||||
|
|
||||||
set tabstop=2
|
set tabstop=2
|
||||||
set sw=2
|
set sw=2
|
||||||
|
|
||||||
set smarttab
|
set smarttab
|
||||||
set smartindent
|
set smartindent
|
||||||
|
|
||||||
set enc=utf-8 " default UTF8 encoding
|
set enc=utf-8 " default UTF8 encoding
|
||||||
set fileencoding=utf-8 " default UTF8 encoding
|
set fileencoding=utf-8 " default UTF8 encoding
|
||||||
set ruler " show the cursor position all the time
|
set ruler " show the cursor position all the time
|
||||||
|
|
||||||
set directory=~/.vim/swap/
|
set directory=~/.vim/swap/
|
||||||
|
|
||||||
set lazyredraw "to speed up vim a bit
|
set lazyredraw "to speed up vim a bit
|
||||||
|
|
@ -37,8 +45,6 @@ set lazyredraw "to speed up vim a bit
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
set statusline+=%F
|
set statusline+=%F
|
||||||
|
|
||||||
" set mouse=a
|
|
||||||
|
|
||||||
filetype plugin on
|
filetype plugin on
|
||||||
filetype indent on
|
filetype indent on
|
||||||
filetype on
|
filetype on
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user