SpaceVim | vim한번에 설치하기
vim환경에서 코딩 이나 즉석모의침투
툴을 만들다 보면 다른 IDE들 처럼 편리한 기능을
찾게된다. 그러면서 vim에 여러가지
플러그인을 덕지덕지 붙이다보면
용량도 커지고 더미 데이터만 늘어나고
어러저런 설정으로 머리가 매우 아프고
시간은 시간데로 날려먹는다.
이럴때 필요한게 SpaceVim···
SpaceVim은 이런 복잡한걸 한번에 해결된다.
물론 시간이 많으면 다른 것을 사용하면 된다.
설치 방법은 매우 간단하다.
아래 코멘더 로 설치하면 한번에 해결된다.
Code
1 | curl –sLf https://spacevim.org/install.sh | bash | cs |
설치가 되고 나면 home경로에 .SpaceVim, .SpaceVim.d
폴더가 생성되게 되는데 .SpaceVim.d/init.toml파일을 수정해서
설정할 수 있습니다. 만약에 .SpaceVim.d/init.toml 폴더나 파일이 없을
경우에는 직접 만들어 주셔도 됩니다.
만약파일이 없는경우 아래의 디폴트 설정 정보를 작성해주면된다.
Code
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 | # This is a basic configuration example for SpaceVim # All SpaceVim options are below [options] snippet [options] # set spacevim theme. by default colorscheme layer is not loaded, # if you want to use more colorscheme, please load the colorscheme # layer, the value of this option is a string. colorscheme = “gruvbox” colorscheme_bg = “dark” # Disable guicolors in basic mode, many terminal do not support 24bit # true colors, the type of the value is boolean, true or false. enable_guicolors = true # Disable statusline separator, if you want to use other value, please # install nerd fonts statusline_separator = “nil” statusline_separator = “bar” buffer_index_type = 4 # Display file type icon on the tabline, If you do not have nerd fonts # installed, please change the value to false enable_tabline_filetype_icon = true # Display current mode text on statusline, by default It is disabled, # only color will be changed when switch modes. enable_statusline_mode = false # Enable autocomplete layer [[layers]] name = “autocomplete” auto–completion–return–key–behavior = “complete” auto–completion–tab–key–behavior = “cycle” [[layers]] name = “shell” default_position = “top” default_height = 30 # This is an example for adding custom plugins lilydjwg/colorizer [[custom_plugins]] name = “lilydjwg/colorizer” merged = false | cs |