Added vimbox-draw for ascii diagrams on essential pluginsj

This commit is contained in:
infidel 2022-04-30 18:00:13 +07:00
parent ae1344805a
commit 11393b50bb
2 changed files with 10 additions and 1 deletions

1
.vimrc
View File

@ -9,6 +9,7 @@ Plug 'junegunn/vim-easy-align'
Plug 'junegunn/fzf.vim' Plug 'junegunn/fzf.vim'
Plug 'junegunn/goyo.vim' Plug 'junegunn/goyo.vim'
Plug 'junegunn/limelight.vim' Plug 'junegunn/limelight.vim'
Plug 'gyim/vim-boxdraw'
" Auto Completes " Auto Completes
Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'neoclide/coc.nvim', {'branch': 'release'}

View File

@ -27,7 +27,7 @@ This is the essential VIM and Tmux configuration for cli based unix systems.
### NerdTree ### NerdTree
Toggle NerdTree with <CTRL-k><k>. Toggle NerdTree with <CTRL-k><k>.
T
### EasyAlign ### EasyAlign
Perform multiline visual select then enter `ga`. Next enter your preference alignment. Perform multiline visual select then enter `ga`. Next enter your preference alignment.
@ -55,6 +55,14 @@ CoC now can use tab to navigate completion list. Make sure the target machine ha
> Completor is not good for servers, as it requires vim version with python support. > Completor is not good for servers, as it requires vim version with python support.
#### vimbox-draw
Create ASCII diagrams :
- Visual select some box
- invoke `+o` to create box or `+O` to create box with label
- To add label into existing box, visual select the area then invoke `+c`
## Future Improvement ## Future Improvement
- [x] Script automatically detect the environment (e.g. BSD) - [x] Script automatically detect the environment (e.g. BSD)