-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
51 lines (50 loc) · 1022 Bytes
/
Copy path.vimrc
File metadata and controls
51 lines (50 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
au FocusLost * :wa
colorscheme slate
filetype indent on
filetype off
filetype plugin indent on
filetype plugin on
inoremap <down> <nop>
inoremap <left> <nop>
inoremap <right> <nop>
inoremap <up> <nop>
nnoremap <down> <nop>
nnoremap j gj
nnoremap k gk
nnoremap <left> <nop>
nnoremap <right> <nop>
nnoremap <up> <nop>
set autoindent
set autowrite
set background=dark
set backspace=indent,eol,start
set backupdir=~/.vim/bak//
set completeopt=menuone,menu,longest,preview
set cursorline
set directory=~/.vim/swp//
set enc=utf-8
set expandtab
set guioptions-=m
set guioptions-=T
set hidden
set hlsearch
set ignorecase
set incsearch
set laststatus=2
set list listchars=trail:·,tab:»·,nbsp:⍽
set mouse=a
set nocompatible
set nojoinspaces
set shiftwidth=2
set showcmd
set showmatch
set smartcase
set softtabstop=2
set synmaxcol=100
set tabstop=2
set ttyfast
set wildchar=<Tab> wildmenu wildmode=list:longest,full
syntax on
if has("directx") && $VIM_USE_DIRECTX != '0'
set renderoptions=type:directx,geom:1,taamode:1
endif