https://maxim-danilov.github.io/vim-to-js-ide/
" https://github.com/pangloss/vim-javascript
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'git://git.wincent.com/command-t.git'
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
Plugin 'pangloss/vim-javascript'
"Lint
Plugin 'w0rp/ale'
"Auto Complate
"Plugin 'Valloric/YouCompleteMe'
" Add color scheme Ych
Plugin 'larsbs/vimterial_dark'
" Filre Explorer
Plugin 'scrooloose/nerdtree'
" System Clipboard
Plugin 'christoomey/vim-system-copy'
call vundle#end() " required
filetype plugin indent on " required
" NERDTress Ctrl+n
map <C-n> :NERDTreeToggle<CR>
" NERDTress File highlighting
"install theme https://github.com/larsbs/vimterial_dark
syntax on
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
set termguicolors
colorscheme vimterial_dark
set ts=2
set nu
'TOOL설치' 카테고리의 다른 글
ippsec tmux 셋팅 (0) | 2020.09.26 |
---|---|
[Burp suite] Maven, Gradle jar파일 빌드하기 (0) | 2020.08.03 |
[Python] Windows에서 파이썬2,3 동시에 사용하는 설정 (0) | 2020.08.02 |
Failed to connect, CredSSP required by server. (0) | 2020.07.14 |
tmux (0) | 2020.07.07 |