Vimの使い方メモ

Vimの基本操作

モード切り替え

ノーマルモードでの移動

終了

ノーマルモードでの操作

検索や置換

その他

Vimのプラグイン

Vim Plug

vim horizon

Nerd tree

FZF

Vim-fugitive

vim-gitgutter

Vim-commentary

Coc-nvim

設定ファイル

set shell=/bin/zsh
set shiftwidth=4
set tabstop=4
set expandtab
set textwidth=0
set autoindent
set hlsearch
set clipboard=unnamed
syntax on

call plug#begin()
Plug 'ntk148v/vim-horizon'
Plug 'preservim/nerdtree'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end()

" if you don't set this option, this color might not correct
set termguicolors

colorscheme horizon

" lightline
let g:lightline = {}
let g:lightline.colorscheme = 'horizon'

" or this line
let g:lightline = {'colorscheme' : 'horizon'}

参考

Tags: