Created
March 2, 2021 08:05
-
-
Save uchiiii/0179a7bc301fa8cfc73404fbfaed0ad5 to your computer and use it in GitHub Desktop.
my vimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible " be iMproved, required | |
filetype off " required | |
set clipboard+=unnamed " for yank and paste | |
" let g:python3_host_prog="/Users/horiuchiryousuke/.pyenv/shims/python3" | |
" ########################################### | |
"文字コードをUFT-8に設定 | |
set fenc=utf-8 | |
" バックアップファイルを作らない | |
set nobackup | |
" スワップファイルを作らない | |
set noswapfile | |
" 編集中のファイルが変更されたら自動で読み直す | |
set autoread | |
" バッファが編集中でもその他のファイルを開けるように | |
set hidden | |
" 入力中のコマンドをステータスに表示する | |
set showcmd | |
" 見た目系 | |
" 行番号を表示 | |
set number | |
" 現在の行を強調表示 | |
set cursorline | |
" 現在の行を強調表示(縦) | |
set cursorcolumn | |
" 行末の1文字先までカーソルを移動できるように | |
set virtualedit=onemore | |
" インデントはスマートインデント | |
set smartindent | |
" ビープ音を可視化 | |
set visualbell | |
" 括弧入力時の対応する括弧を表示 | |
set showmatch | |
" ステータスラインを常に表示 | |
set laststatus=2 | |
" コマンドラインの補完 | |
set wildmode=list:longest | |
" 折り返し時に表示行単位での移動できるようにする | |
nnoremap j gj | |
nnoremap k gk | |
" シンタックスハイライトの有効化 | |
syntax enable | |
" replace visually selected text with the last yanked or deleted text | |
vnoremap S "_dP | |
" Tab系 | |
" 不可視文字を可視化(タブが「▸-」と表示される) | |
set list listchars=tab:\▸\- | |
" Tab文字を半角スペースにする | |
set expandtab | |
" 行頭以外のTab文字の表示幅(スペースいくつ分) | |
set tabstop=2 | |
" 行頭でのTab文字の表示幅 | |
set shiftwidth=2 | |
" 検索系 | |
" 検索文字列が小文字の場合は大文字小文字を区別なく検索する | |
set ignorecase | |
" 検索文字列に大文字が含まれている場合は区別して検索する | |
set smartcase | |
" 検索文字列入力時に順次対象文字列にヒットさせる | |
set incsearch | |
" 検索時に最後まで行ったら最初に戻る | |
set wrapscan | |
" 検索語をハイライト表示 | |
set hlsearch | |
" ESC連打でハイライト解除 | |
nmap <Esc><Esc> :nohlsearch<CR><Esc> | |
" #################################################### | |
noremap <F5> :Autoformat<CR> | |
" for nerdtree | |
map <C-n> :NERDTreeToggle<CR> | |
nnoremap <C-t> :NERDTreeToggle<CR> | |
nnoremap <C-f> :NERDTreeFind<CR> | |
" Start NERDTree when Vim starts with a directory argument. | |
" autocmd StdinReadPre * let s:std_in=1 | |
" autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists('s:std_in') | | |
" \ execute 'NERDTree' argv()[0] | wincmd p | enew | execute 'cd '.argv()[0] | endif | |
" Start NERDTree. If a file is specified, move the cursor to its window. | |
autocmd StdinReadPre * let s:std_in=1 | |
autocmd VimEnter * NERDTree | if argc() > 0 || exists("s:std_in") | wincmd p | endif | |
" Exit Vim if NERDTree is the only window left. | |
autocmd BufEnter * if tabpagenr('$') == 1 && winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | | |
\ quit | endif | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'rust-lang/rust.vim' | |
Plugin 'Chiel92/vim-autoformat' | |
Plugin 'fatih/vim-go' | |
Plugin 'preservim/nerdtree' | |
Plugin 'JuliaEditorSupport/julia-vim' | |
" All of your Plugins must be added before the following line | |
call vundle#end() " required | |
filetype plugin indent on " required | |
" 保存時に自動でrustfmt | |
let g:rustfmt_autosave = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment