TOOL설치

vim javascript 코딩설정

우와해커 2020. 10. 10. 15:33

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