「Vimの設定」の版間の差分
提供: オレッジベース
32行目: | 32行目: | ||
set list listchars=tab:\▸\- | set list listchars=tab:\▸\- | ||
set expandtab | set expandtab | ||
− | set tabstop= | + | set tabstop=4 |
− | set shiftwidth= | + | set shiftwidth=4 |
set ignorecase | set ignorecase | ||
set smartcase | set smartcase |
2018年8月23日 (木) 16:12時点における最新版
Vimの設定
Redhat系?
$ sudo vim /etc/vimrc
Debian系?
$ sudo vim /etc/vim/vimrc
以下を追記
set encoding=utf-8 set fileencodings=iso-2022-jp,euc-jp,sjis,utf-8 set fileformats=unix,dos,mac set fenc=utf-8 set nobackup set noswapfile set autoread set hidden set showcmd set number set cursorline set virtualedit=onemore set smartindent set visualbell set showmatch set laststatus=2 set wildmode=list:longest nnoremap j gj nnoremap k gk set list listchars=tab:\▸\- set expandtab set tabstop=4 set shiftwidth=4 set ignorecase set smartcase set incsearch set wrapscan set hlsearch nmap <Esc><Esc> :nohlsearch<CR><Esc>