mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-15 14:26:26 +00:00
24 lines
373 B
VimL
24 lines
373 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
|
|
|
|
" Filetype extension
|
|
au BufRead,BufNewFile *.md set syntax=markdown
|