" .vimrc#General settings set exrc set secure set title set noshowmode set autowrite set inccommand=split set noshowcmd " set autochdir " automatically sets cwd to the dir containing the file in the current buffer set hidden set nolist listchars+=space:•,trail:¬ set iskeyword-=- set encoding=utf-8 nobomb " set nocompatible set number let &showbreak='↪ ' set visualbell set noerrorbells set hlsearch set smartcase set ignorecase set incsearch " set cmdheight=2 set pumheight=10 set lazyredraw set mouse=a set clipboard+=unnamedplus " share OSX clipboard set backspace=indent,eol,start " allow backspace in INSERT mode set signcolumn=yes set cursorline " set cursorcolumn set colorcolumn=80 set updatetime=300 " For conceal markers. if has('conceal') " set conceallevel=2 concealcursor=nv set conceallevel=1 concealcursor= endif " centralize vimfiles set backupdir=/tmp set directory=/tmp if exists('&undodir') set undodir=~/.vim/undo endif " pane divider chars set fillchars=fold:-,vert:\│ "" colorscheme options if has("termguicolors") set termguicolors endif filetype plugin indent on if has('syntax') && !exists('g:syntax_on') syntax enable endif " some defaults " set ts=8 sts=0 et sw=4 sta set shiftround set diffopt+=algorithm:patience set path+=expand('%:h:p')