Created
May 24, 2020 09:45
-
-
Save shinshin86/2887a356cd10543383632cd574f84a82 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| """""""""""""""""""""""""""""" | |
| " vimrc-202005 | |
| " (require: vim-plug, fzf) | |
| " see: https://gist.github.com/shinshin86/17fe2e40529f6244f17d32ed2e0aeec3 | |
| " | |
| " Install(Using curl): | |
| " curl --output ~/.vimrc {this gist raw url} | |
| """""""""""""""""""""""""""""" | |
| call plug#begin('~/.vim/plugged') | |
| " Japanese Help | |
| Plug 'vim-jp/vimdoc-ja' | |
| " fzf | |
| Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
| Plug 'junegunn/fzf.vim' | |
| " color scheme | |
| Plug 'chriskempson/base16-vim' | |
| " Customize status bar | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'vim-airline/vim-airline-themes' | |
| " deoplate(require: python3) | |
| " Plug 'Shougo/deoplete.nvim' | |
| " Plug 'roxma/nvim-yarp' | |
| " Plug 'roxma/vim-hug-neovim-rpc' | |
| call plug#end() | |
| """""""""""""""""""""""""""""" | |
| set encoding=utf-8 | |
| set helplang=ja,en | |
| set number | |
| set expandtab | |
| set hlsearch | |
| set ignorecase | |
| set incsearch | |
| set smartcase | |
| set laststatus=2 | |
| syntax on | |
| set autoindent | |
| filetype plugin indent on | |
| set showcmd | |
| set background=dark | |
| set wildmenu | |
| set ruler | |
| set showmatch | |
| " setting color scheme | |
| let base16colorspace=256 " Access colors present in 256 colorspace | |
| set termguicolors | |
| " setting status bar | |
| let g:airline_theme='luna' | |
| " setting deoplate(require: python3) | |
| " let g:deoplete#enable_at_startup = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment