mirror of
https://github.com/webgefrickel/dotfiles
synced 2024-11-03 15:40:30 +00:00
c911f34027
With default configs and configs for plugins. Wrap autocommands in a vimrc group as well.
39 lines
2.5 KiB
VimL
39 lines
2.5 KiB
VimL
" Default sane config
|
|
"======================================================================
|
|
|
|
filetype plugin indent on
|
|
syntax on
|
|
|
|
set autoread " Automatically read a file that has changed on disk
|
|
set backspace=indent,eol,start " Allow backspacing over everything in insert mode
|
|
set cursorline " highlight current line
|
|
set encoding=utf-8 " Yeah. UTF-8 FTW!
|
|
set grepprg=ag " use ag for grepping
|
|
set hidden " allows for switching buffers without writing
|
|
set lazyredraw " Don't redraw while executing macros
|
|
set mouse=a " mouse for scrolling
|
|
set nobackup " no backups
|
|
set noerrorbells " don't beep
|
|
set noesckeys " no delay for escaping
|
|
set noshowmode " dont show active mode
|
|
set noswapfile " no swp-files
|
|
set nowrap " dont wrap lines around
|
|
set nowritebackup " no stupid backup files
|
|
set pastetoggle=<F2> " toggle paste-mode for c&p with F2
|
|
set relativenumber " relative line numbers are mothereffin awesome -- see how far your commands will go
|
|
set ruler " show where you are in the document
|
|
set scrolljump=5 " Lines to scroll when cursor leaves screen
|
|
set scrolloff=3 " Minimum lines to keep above and below cursor
|
|
set showcmd " show me what im doing. helps alot
|
|
set sidescroll=10 " smoother side-scrolling
|
|
set sidescrolloff=5 " jump by 5 when scrolling sideways
|
|
set timeout ttimeoutlen=100 " get rid of the delay when pressing O (for example)
|
|
set ttyfast " faster terminal usage
|
|
set ttymouse=xterm2 " xterm/tmux compatible mouse
|
|
set virtualedit=all " every mode active from v V to StrgV
|
|
set visualbell " don't flicker
|
|
set complete-=i " dont complete from files
|
|
set nrformats-=octal " nobody uses octal anyway
|
|
set display+=lastline " shorten long lastlines
|
|
set formatoptions+=j " Delete comment character when joining commented lines
|