2
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?

More than 5 years have passed since last update.

vimの諸設定

Posted at

##1.設定場所
HOMEディレクトリに移動
探し方:
$ echo $HOME 

##2.設定ファイル
vimrc
$ vim ~/.vimrc

##3.いろんな設定

set number //行番号
set title //編集中のファイル名を表示
set smartindent  //組み込みのC言語風のインデントを行う
syntax on  //コード色分け
colorscheme kalisi //kalisiは色の一種

#### 色設定

$ mkdir ~/.vim
$ cd ~/.vim
$ mkdir colors

$ git clone https://github.com/freeo/vim-kalisi //kalisiをgitからダウンロードする
$ mv vim-kalisi/colors/kalisi.vim ~/.vim/colors/

設定ファイルに移動する
$ vim ~/.vimrc
colorscheme kalisi 
を入力

2
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
2
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?