-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_general.vim
More file actions
48 lines (40 loc) · 1015 Bytes
/
_general.vim
File metadata and controls
48 lines (40 loc) · 1015 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
vim9script
set shell=bash
set helplang=ja,en
set hlsearch
set incsearch
set noswapfile
set hidden
set tabstop=4
set shiftwidth=4
set expandtab
set wrap
set listchars=tab:»-,trail:.,eol:$
set nrformats-=octal
set foldmarker={{{,}}}
set foldmethod=marker
set scrolloff=3
set signcolumn=yes #number,yes,no,auto
set number
# grep後に自動でQuickFixWindowを開く
autocmd QuickfixCmdPost make,grep,vimgrep belowright cwindow
# エンコード設定
set fileencodings=ucs-bom,utf-8,iso-2022-jp,sjis,cp932,euc-jp,cp20932
# クリップボードを使用する
set clipboard^=unnamed,unnamedplus
# 自動改行 textwide
set textwidth=0
# 対応括弧に'<'と'>'のペアを追加
set matchpairs& matchpairs+=<:>
set virtualedit=all # カーソルを文字が存在しない部分でも動けるようにする
# set mune off
set guioptions-=m
set guioptions-=T
set guioptions-=r
set guioptions-=R
set guioptions-=l
set guioptions-=L
set guioptions-=b
# spell check
set spelllang=en,cjk
set nospell