57 lines
1.2 KiB
VimL
57 lines
1.2 KiB
VimL
set nocompatible
|
|
syntax on
|
|
filetype plugin indent on
|
|
set number
|
|
set relativenumber
|
|
set expandtab
|
|
set shiftwidth=4
|
|
set softtabstop=4
|
|
set tabstop=4
|
|
set smartindent
|
|
set backspace=indent,eol,start
|
|
|
|
set colorcolumn=81
|
|
"hi ColorColumn ctermbg=lightgrey guibg=lightgrey
|
|
set textwidth=80
|
|
set wrap
|
|
set linebreak
|
|
|
|
set autoread " Set to auto read when a file is changed from the outside
|
|
set path+=**
|
|
set wildmenu
|
|
set showcmd
|
|
set wildmode=longest:full,full
|
|
set wildoptions=pum
|
|
set wildignore+=*/tmp/*,*.so,*.swp,*.zip
|
|
set wildignore+=*\\tmp\\*,*.exe
|
|
|
|
set number ruler
|
|
set showmatch
|
|
set showbreak=↳\ \
|
|
set hidden
|
|
set hlsearch
|
|
set noswapfile
|
|
set mouse= "remove mouse
|
|
"set clipboard=unnamedplus
|
|
|
|
" Rendering
|
|
set ttyfast
|
|
set laststatus=1
|
|
set t_Co=256
|
|
let &t_ut=''
|
|
|
|
"hi ColorColumn ctermbg=lightgrey guibg=lightgrey
|
|
|
|
" Show bad whitespace in an obvious but not obnoxious color
|
|
"highlight pythonSpaceError ctermbg=darkgreen guibg=darkgreen
|
|
"highlight BadWhitespace ctermbg=darkgreen guibg=darkgreen
|
|
"au BufNewFile,BufRead *.py,*.pyw,*.c,*.h,*.cc,*.hh,*.sh match BadWhitespace /\s\+$/
|
|
|
|
au FileType python
|
|
\ set fileformat=unix
|
|
\ encoding=utf-8
|
|
|
|
au FileType markdown,tex
|
|
\ set spell spelllang=en_us
|
|
|