0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

vimの設定

Last updated at Posted at 2025-04-20

vim-plugのインストール

vim
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
  https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
windows
iwr -useb https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | ni $HOME/vimfiles/autoload/plug.vim -Force

設定ファイル編集

.vimrc(Windowsは_vimrc)
set number
set showmode
set cursorline
set cursorcolumn
set ignorecase
set incsearch
set hlsearch
syntax on
set autoindent
nnoremap <C-t> :NERDTreeToggle<CR>
call plug#begin()
  Plug 'preservim/nerdtree'
  Plug 'ctrlpvim/ctrlp.vim'
  Plug 'simeji/winresizer'
call plug#end() 

プラグインインストール

:PlugInstall
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?