1
0
mirror of https://github.com/ViViDboarder/vim-settings.git synced 2025-01-12 00:53:21 +00:00
vim-settings/vim/rc/init.rc.vim

24 lines
373 B
VimL
Raw Normal View History

2015-03-26 17:09:26 +00:00
"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