guest@dotshare [~/groups/vim/rc] $ ls Neovim/ | cat

Neovim (scrot, raw, dl)

Maran Dec 15, 2021 (vim/rc)

SCROT

 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
43
44
45
:set number
:set autoindent
:set tabstop=4
:set shiftwidth=4
:set smarttab
:set softtabstop=4
:set mouse=a

call plug#begin() "Run :PlugInstall

Plug 'http://github.com/tpope/vim-surround' " Surrounding a word with () ':ysw)
Plug 'https://github.com/preservim/nerdtree' " NerdTree Run by ':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/ap/vim-css-color' " CSS Color Preview
Plug 'https://github.com/rafi/awesome-vim-colorschemes' " Retro Scheme
Plug 'https://github.com/ryanoasis/vim-devicons' " Developer Icons
Plug 'https://github.com/tc50cal/vim-terminal' " Vim Terminal
Plug 'https://github.com/terryma/vim-multiple-cursors' " CTRL + N for multiple cursors
Plug 'https://github.com/preservim/tagbar' " Tagbar for code navigation
Plug 'https://github.com/neoclide/coc.nvim'  " Auto Completion

set encoding=UTF-8

call plug#end()

"For NERDTree
nnoremap <C-f> :NERDTreeFocus<CR>
nnoremap <C-n> :NERDTree<CR>
nnoremap <C-t> :NERDTreeToggle<CR>

" For Tagbar
nmap <C-b> :TagbarToggle<CR>

:set completeopt-=preview " For No Previews

" --- Just Some Notes ---
" :PlugClean :PlugInstall :UpdateRemotePlugins
"
" :CocInstall coc-python
" :CocInstall coc-clangd
" :CocInstall coc-snippets
" :CocCommand snippets.edit... FOR EACH FILE TYPE
"
inoremap <expr> <Tab> pumvisible() ? coc#_select_confirm() : "<Tab>"

CLICK TO VIEW

x

Notes

How is it?

Comments

Maran said about 2 years ago

Nerd Fonts need to be installed.