this repo has no description
at main 677 B view raw
1if &compatible 2 set nocompatible 3endif 4 5nnoremap ; : 6 7syntax on 8filetype plugin indent on 9runtime macros/matchit.vim 10 11set shiftwidth=2 12set softtabstop=2 13set tabstop=2 14set autoindent 15set expandtab 16 17set relativenumber 18set number 19set ruler 20set showcmd 21 22set showmatch 23set hidden 24set nowrap 25 26set hlsearch 27set incsearch 28set ignorecase 29set smartcase 30 31set esckeys " allows function keys to be recognized in insert mode 32set ttimeoutlen=20 33set timeoutlen=1000 34 35augroup languages 36 autocmd! 37 autocmd FileType markdown,text set wrap linebreak nolist 38augroup END 39" if &filetype == "" || &filetype == "markdown" || &filetype == "text" 40" set wrap 41" set linebreak 42" set nolist 43" endif