๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
๐Ÿ› IT ์ด์Šˆ ๋ฐ ์œ ํ‹ธ๋ฆฌํ‹ฐ

neovim - nvim ์„ค์ •

by Janger 2022. 2. 8.
728x90
๋ฐ˜์‘ํ˜•

๊ฒฝ๋กœ: 

~/.config/nvim/init.vim

 

 

๋Œ€์ถฉ ๋‚ด ์„ค์ •) 

:set number
" :set relativenumber
:set autoindent
:set tabstop=4
:set shiftwidth=4
:set smarttab
:set softtabstop=4
:set mouse=a


call plug#begin()
Plug 'http://github.com/tpope/vim-surround' " Surrounding ysw)
Plug 'https://github.com/preservim/nerdtree' " NerdTree
Plug 'https://github.com/tpope/vim-commentary' " For Commenting gcc & gc
Plug 'https://github.com/vim-airline/vim-airline' " Status bar
Plug 'https://github.com/lifepillar/pgsql.vim' " PSQL Pluging needs :SQLSetType pgsql.vim
Plug 'https://github.com/ap/vim-css-color' " CSS Color Preview
Plug 'https://github.com/rafi/awesome-vim-colorschemes' " Retro Scheme
Plug 'https://github.com/neoclide/coc.nvim'  " Auto Completion
Plug 'https://github.com/ryanoasis/vim-devicons' " Developer Icons
Plug 'https://github.com/tc50cal/vim-terminal' " Vim Terminal
Plug 'https://github.com/preservim/tagbar' " Tagbar for code navigation
Plug 'https://github.com/terryma/vim-multiple-cursors' " CTRL + N for multiple cursors
call plug#end()

* coc.nvim(auto Completion)์— ์˜ค๋ฅ˜๊ฐ€ ์ƒ๊ธฐ๋ฉด coc.nvim ํด๋”๋กœ ์ง„์ž…ํ•ด์„œ yarn install ๋ช…๋ น์–ด๋ฅผ ์‹คํ–‰์‹œ์ผœ์ฃผ์–ด์•ผ ๋œ๋‹ค.

 

1) ์„ค์ • ์ดํ›„ nvim์œผ๋กœ ์ง„์ž…

2) :Plug <ํƒญ> PluginInstall ์„ ํƒ <์—”ํ„ฐ>

 

 

728x90
๋ฐ˜์‘ํ˜•