config/vimrc

55 lines
980 B
VimL
Raw Normal View History

2014-09-26 03:17:00 +00:00
filetype plugin indent on
2011-06-14 00:42:53 +00:00
" Tabbing
2016-02-04 03:34:00 +00:00
function! SetupTabbing()
set tabstop=2
set expandtab
set shiftwidth=2
set softtabstop=2
set sw=2
set autoindent
set smartindent
set smarttab
endfunction
command! -bar SetupTabbing call SetupTabbing()
SetupTabbing
2011-06-14 00:42:53 +00:00
" Window settings
set winminwidth=20
set winwidth=100
set winheight=20
2011-06-28 00:00:15 +00:00
" Syntax highlighting
syntax on
" Wrapping settings
2011-06-14 00:42:53 +00:00
set nowrap " nowrap makes the lines not wrap
" set wrap " wrap makes the lines wrap
set linebreak
" keeps lines below the cursor
set scrolloff=2
" makes LaTeX use spell checking, word wrapping
autocmd FileType tex set wrap spell
autocmd FileType make set noexpandtab
2013-05-10 20:51:56 +00:00
autocmd FileType *gitconfig set noexpandtab
2016-02-04 03:34:00 +00:00
autocmd FileType python SetupTabbing
2014-09-26 03:17:00 +00:00
" set term=xterm
let java_allow_cpp_keywords = 1
2013-04-03 03:51:53 +00:00
set ruler
2013-06-06 21:36:06 +00:00
set number
2014-09-26 03:17:00 +00:00
set backspace=indent,eol,start
set hlsearch
2013-04-03 03:51:53 +00:00
augroup HiglightTODO
autocmd!
autocmd WinEnter,VimEnter * :silent! call matchadd('Todo', 'TODO', -1)
augroup END
2013-04-03 03:51:53 +00:00