Last active
December 24, 2017 13:12
-
-
Save polikeiji/358f3e082588bf00acb5eeca0a6eb602 to your computer and use it in GitHub Desktop.
Mac で Vim ベースの JavaScript 開発環境を整える (その 1) ref: https://qiita.com/polikeiji/items/b3845271a93f5304d119
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
brew install neovim |
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
tnoremap <silent> <ESC> <C-\><C-n> |
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
au TermOpen * setlocal nonumber norelativenumber |
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
call plug#begin() | |
Plug 'w0rp/ale' | |
call plug#end() |
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
set incsearch | |
set hlsearch | |
set ts=4 | |
set et | |
syntax enable | |
set termguicolors | |
set background=dark | |
colorscheme solarized | |
set backspace=indent,eol,start | |
set clipboard+=unnamedplus | |
set number | |
set encoding=utf-8 | |
set fencs=utf-8,iso-2022-jp,sjis,euc-jp | |
au TermOpen * setlocal nonumber norelativenumber | |
tnoremap <silent> <ESC> <C-\><C-n> | |
call plug#begin() | |
Plug 'w0rp/ale' | |
call plug#end() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment