vimrcの旅 ~その3~
DAY5
"マウスの無効化(マウス操作でvisualモードにならない様にする)
set mouse-=a
"ダーク系<->ライト系カラースキーマ切替
set background=dark "set background=light
"シンタックスハイライト
syntax on
"検索文字をハイライトする
set hls
DAY6
"ステータスラインの常時表示&表示内容
set laststatus=2
"Dein.vimを導入
"dein Scripts----------------------------- if &compatible set nocompatible " Be iMproved endif " Required: set runtimepath+=/Users/tomcha/.cache/dein/repos/github.com/Shougo/dein.vim " Required: if dein#load_state('/Users/tomcha/.cache/dein') call dein#begin('/Users/tomcha/.cache/dein') " Let dein manage dein " Required: call dein#add('/Users/tomcha/.cache/dein/repos/github.com/Shougo/dein.vim') call dein#load_toml('~/.vim/plugins.toml', {'lazy': 0}) " Add or remove your plugins here like this: "call dein#add('Shougo/neosnippet.vim') "call dein#add('Shougo/neosnippet-snippets') " Required: call dein#end() call dein#save_state() endif " Required: filetype plugin indent on syntax enable " If you want to install not installed plugins on startup. if dein#check_install() call dein#install() endif "End dein Scripts-------------------------