diff options
Diffstat (limited to '')
-rw-r--r-- | vim/vimrc | 14 | ||||
-rw-r--r-- | zsh/zshrc | 2 |
2 files changed, 8 insertions, 8 deletions
@@ -10,7 +10,7 @@ set number set noerrorbells set autoindent set tabstop=4 -set textwidth=80 +"set textwidth=80 set shiftwidth=4 set shiftround set modeline @@ -18,18 +18,18 @@ set nobackup set nohlsearch set foldenable set listchars=tab:»· -set colorcolumn=80 +"set colorcolumn=80 highlight ColorColumn ctermbg=darkred guibg=darkred autocmd bufnewfile *.py so ~/etc/vim/header_python autocmd bufnewfile *.html so ~/etc/vim/header_html autocmd bufnewfile,bufread *.tpl set filetype=html -inoremap ( ()<Esc>i -inoremap [ []<Esc>i -inoremap { {}<Esc>i -inoremap < <><Esc>i -inoremap " ""<Esc>i +"inoremap ( ()<Esc>i +"inoremap [ []<Esc>i +"inoremap { {}<Esc>i +"inoremap < <><Esc>i +"inoremap " ""<Esc>i "noremap s h "noremap n k @@ -38,7 +38,7 @@ SAVEHIST=1000 HISTFILE=~/.zsh_history autoload -U compinit; compinit -autoload zmv +autoload -U zmv alias c="clear" alias ls="ls --color=auto" |