mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-18 00:36:27 +00:00
25 lines
410 B
VimL
25 lines
410 B
VimL
"Allows filetype detection
|
|
filetype on
|
|
|
|
" Set settings values
|
|
filetype plugin indent on
|
|
|
|
" Allow arrow keys
|
|
set nocompatible
|
|
|
|
" Use more convenient leader
|
|
let mapleader=","
|
|
|
|
" Enable mouse input
|
|
set mousehide
|
|
set mouse=a
|
|
|
|
" Set backup dirs
|
|
set backup
|
|
set backupdir=~/.vim/backup
|
|
set directory=~/.vim/tmp
|
|
set viminfo='100,n~/.vim/tmp/viminfo
|
|
|
|
" Filetype extension
|
|
au BufRead,BufNewFile *.md set syntax=markdown
|