Vim Customizing
Vim Customizing
Vim Plugin Manager Installation
아래의 플러그인들을 설치하기 위해서 우선 플러그 매니저를 설치해야한다.
1
curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
~/.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
set nocompatible " be iMproved, required
filetype off " required
call plug#begin('~/.vim/plugged')
" 플러그인들을 여기에 추가
Plug 'preservim/nerdtree' " 파일 탐색기
Plug 'vim-airline/vim-airline' " 상태바 테마
Plug 'morhetz/gruvbox' " 컬러 스킴
Plug 'dense-analysis/ale' " 린팅
Plug 'osyo-manga/vim-anzu'
Plug 'python-mode/python-mode'
Plug 'davidhalter/jedi-vim'
Plug 'pangloss/vim-javascript'
Plug 'leafgarland/typescript-vim'
call plug#end()
autocmd FileType python setlocal expandtab shiftwidth=4 tabstop=4
" 추가 설정
colorscheme gruvbox
set background=dark
set number
set visualbell
set showmatch
set autoindent
set showmode
set laststatus=2
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab
set hlsearch
set incsearch
if has("syntax")
syntax on
endif
모든 것을 마친 이후에는 :PlugInstall
를 통해 Plug를 설치한다.
This post is licensed under CC BY 4.0 by the author.