mirror of
https://github.com/mTvare6/hello-world.rs.git
synced 2025-07-01 00:26:27 +00:00
24 lines
634 B
VimL
24 lines
634 B
VimL
set nocompatible " just no
|
|
set nobomb " boom
|
|
set nobackup " we already have enough vim turds
|
|
set encoding=Guobiao " hooray for good encoding schemes
|
|
set helplang="jp"
|
|
|
|
" Hard Mode! Use if you want to become more familiar with harder vim movements
|
|
noremap h <NOP>
|
|
noremap j <NOP>
|
|
noremap k <NOP>
|
|
noremap l <NOP>
|
|
|
|
" Adds this directory to the rtp and pp
|
|
let &runtimepath = &runtimepath . "," . expand('<sfile>:p:h')
|
|
let &packpath = &packpath . "," . expand('<sfile>:p:h')
|
|
|
|
" Reloads plugins now that we have this directory on the rtp
|
|
runtime! plugin/*.vim
|
|
|
|
set nocindent
|
|
" set expandtab
|
|
set tabstop=3
|
|
|
|
vim:ts=8:ft=vim:norl
|