Skip to content

Instantly share code, notes, and snippets.

@khirotaka
Created January 3, 2020 01:43
Show Gist options
  • Save khirotaka/e2ca85b9c4444ce991fd123ec792c593 to your computer and use it in GitHub Desktop.
Save khirotaka/e2ca85b9c4444ce991fd123ec792c593 to your computer and use it in GitHub Desktop.
My vimrc
set number
imap <c-j> <esc>
"シンタックスハイライトの設定
syntax on
"タブ の大きさをスペース 4つ分に設定
set expandtab
set tabstop=4
set shiftwidth=4
set wildmenu
set wildmode=full
"vim-plugを使ってプラグインの管理をしている。
"Swiftのシンタックスを利用するためのプラグインを呼び出し
"インデントの深さを視覚化する プラグイン
call plug#begin('~/.vim/plugged')
Plug 'keith/swift.vim'
Plug 'nathanaelkane/vim-indent-guides'
Plug 'JuliaEditorSupport/julia-vim'
call plug#end()
"カーソルラインの設定
highlight LineNr ctermfg=239
highlight CursorLine cterm=none
set cursorline
hi clear CursorLine
hi Comment ctermfg=DarkGrey
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment