" ファイルタイプ別のプラグイン・インデントを有効化 filetype plugin on filetype indent on " 検索後のハイライトをオフ set nohlsearch " バックスペースで以下の文字を削除 set backspace=indent,eol,start set smartindent set smarttab set tabstop=2 softtabstop=2 shiftwidth=2 set expandtab set ignorecase smartcase set incsearch set ruler set title set number relativenumber set scrolloff=1000 set showcmd set showmode " tells us which mode we're in. set showtabline=1 set laststatus=2 " always show set backspace=indent,eol,start set whichwrap=b,s,h,l,<,>,[,] set synmaxcol=200 set tildeop set cursorline set nocursorcolumn set splitbelow splitright set history=255 set nostartofline "don't move with <C-f>, etc. set tags+=codex.tags " haskell set spelllang=en_gb set helplang=en set wildmode=longest,list,full set wildmenu set list set listchars=tab:>-,trail:- set conceallevel=1 set matchpairs=(:),{:},[:] set showmatch set matchtime=2 set foldcolumn=0 " set foldmethod=marker set foldme...