Skip to content

Commit

Permalink
Update init.vim
Browse files Browse the repository at this point in the history
  • Loading branch information
tranmanhlt7a4 authored Nov 3, 2022
1 parent 60cf3fa commit 13b8d63
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -125,3 +125,76 @@ autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
for setting_file in split(glob(stdpath('config').'/settings/*.vim'))
execute 'source' setting_file
endfor


" " Theme
" Plug 'joshdick/onedark.vim', " Dark theme
" Plug 'morhetz/gruvbox'
" Plug 'rafi/awesome-vim-colorschemes'
" Plug 'cranberry-clockworks/coal.nvim' " Super dark theme
"
" " File browser
" Plug 'preservim/nerdTree' " File browser
" Plug 'Xuyuanp/nerdtree-git-plugin' " Git status
" Plug 'ryanoasis/vim-devicons' " Icon
" Plug 'tiagofumo'
" \ .'/vim-nerdtree-syntax-highlight'
" Plug 'unkiwii/vim-nerdtree-sync' " Sync current file
"
" " File search
" Plug 'junegunn/fzf',
" \ { 'do': { -> fzf#install() } } " Fuzzy finder
" Plug 'junegunn/fzf.vim'
"
" " Status bar
" Plug 'vim-airline/vim-airline'
" Plug 'vim-airline/vim-airline-themes'
" " Plug 'kyazdani42/nvim-web-devicons'
" " Plug 'romgrk/barbar.nvim'
" " Plug 'folke/which-key.nvim'
" " Plug 'feline-nvim/feline.nvim'
"
" " Git plug for feline
" Plug 'lewis6991/gitsigns.nvim'
"
" " Terminal
" Plug 'voldikss/vim-floaterm' " Float terminal
"
" " Code intellisense
" Plug 'neoclide/coc.nvim',
" \ {'branch': 'release'} " Language server protocol (LSP)
" Plug 'pappasam/coc-jedi', " Jedi language server
" Plug 'jiangmiao/auto-pairs' " Parenthesis auto
" Plug 'alvan/vim-closetag'
" Plug 'mattn/emmet-vim'
" Plug 'preservim/nerdcommenter' " Comment code
" Plug 'liuchengxu/vista.vim' " Function tag bar
" Plug 'alvan/vim-closetag' " Auto close HTML/XML tag
" \ {
" \ 'do': 'yarn install '
" \ .'--frozen-lockfile '
" \ .'&& yarn build',
" \ 'branch': 'main'
" \ }
"
" " Code syntax highlight
" Plug 'yuezk/vim-js' " Javascript
" Plug 'MaxMEllon/vim-jsx-pretty' " JSX/React
" Plug 'jackguo380/vim-lsp-cxx-highlight' " C/C++
" Plug 'uiiaoo/java-syntax.vim' " Java
"
" " Debugging
" Plug 'puremourning/vimspector' " Vimspector
"
" " Source code version control
" Plug 'tpope/vim-fugitive' " Git infomation
" Plug 'tpope/vim-rhubarb'
" Plug 'airblade/vim-gitgutter' " Git show changes
" Plug 'samoshkin/vim-mergetool' " Git merge
"
" " Color picker plugin
" Plug 'ziontee113/color-picker.nvim'
"
" " Highlight color in files.
" Plug 'ap/vim-css-color'
"

0 comments on commit 13b8d63

Please sign in to comment.