You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
884 B
33 lines
884 B
""" General |
|
syntax enable |
|
set nocompatible | filetype indent plugin on | syn on |
|
set backspace=indent,eol,start |
|
|
|
set ruler " show current line and column |
|
set nu rnu " show line numbers |
|
set cc=75 " show column ruler |
|
set ts=4 |
|
set shiftwidth=4 |
|
set expandtab |
|
set scrolloff=2 |
|
set completeopt=menu,menuone,noselect |
|
syntax on |
|
|
|
""" Finding files |
|
set path+=** " Provides tab-completion for all file-related tasks |
|
set wildmenu " Display all mathing files when we tab complete |
|
|
|
""" Tags |
|
command! Mktags !ctags -R . |
|
|
|
""" file browsing |
|
let g:netrw_banner=0 " disable annoying banner |
|
let g:netrw_browse_split=4 " open in prior window |
|
let g:netrw_altv=1 " open splits to the right |
|
let g:netrw_liststyle=3 " tree view |
|
let g:netrw_list_hide=netrw_gitignore#Hide() |
|
|
|
"" typo |
|
setlocal spell |
|
set spelllang=en |
|
inoremap <C-l> <c-g>u<Esc>[s1z=`]a<c-g>u
|
|
|