chore: Update plugins
This commit is contained in:
parent
d0f695f4f8
commit
3a4f4256f8
2 changed files with 9 additions and 8 deletions
|
@ -5,6 +5,7 @@ picom &
|
||||||
nitrogen --restore &
|
nitrogen --restore &
|
||||||
$HOME/.scripts/launch-conky_dwm.sh &
|
$HOME/.scripts/launch-conky_dwm.sh &
|
||||||
sxhkd -c $HOME/.config/sxhkd/dwm &
|
sxhkd -c $HOME/.config/sxhkd/dwm &
|
||||||
|
easyeffects --gapplication-service &
|
||||||
if [ x$(pidof dwmblocks) = "x" ]
|
if [ x$(pidof dwmblocks) = "x" ]
|
||||||
then
|
then
|
||||||
dwmblocks &
|
dwmblocks &
|
||||||
|
|
|
@ -39,7 +39,7 @@ Plug 'ryanoasis/vim-devicons'
|
||||||
" ======
|
" ======
|
||||||
|
|
||||||
" -- Markdown preview, not really useful since it's only support github's md format.
|
" -- Markdown preview, not really useful since it's only support github's md format.
|
||||||
Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app & yarn install' }
|
Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() }, 'for': ['markdown', 'vim-plug']}
|
||||||
|
|
||||||
" --- Auto complete with NCM2 (nvim-completion-manager)
|
" --- Auto complete with NCM2 (nvim-completion-manager)
|
||||||
" Plug 'ncm2/ncm2'
|
" Plug 'ncm2/ncm2'
|
||||||
|
@ -62,11 +62,11 @@ Plug 'neovim/nvim-lspconfig'
|
||||||
" Plug 'Shougo/ddc-sorter_rank', { 'branch': 'main' }
|
" Plug 'Shougo/ddc-sorter_rank', { 'branch': 'main' }
|
||||||
|
|
||||||
" --- Auto complete with CMP
|
" --- Auto complete with CMP
|
||||||
Plug 'hrsh7th/cmp-nvim-lsp'
|
Plug 'hrsh7th/cmp-nvim-lsp', { 'branch': 'main' }
|
||||||
Plug 'hrsh7th/cmp-buffer'
|
Plug 'hrsh7th/cmp-buffer', { 'branch': 'main' }
|
||||||
Plug 'hrsh7th/cmp-path'
|
Plug 'hrsh7th/cmp-path', { 'branch': 'main' }
|
||||||
Plug 'hrsh7th/cmp-cmdline'
|
Plug 'hrsh7th/cmp-cmdline', { 'branch': 'main' }
|
||||||
Plug 'hrsh7th/nvim-cmp'
|
Plug 'hrsh7th/nvim-cmp', { 'branch': 'main' }
|
||||||
|
|
||||||
" --- Indent visualization
|
" --- Indent visualization
|
||||||
" Plug 'Yggdroot/indentLine'
|
" Plug 'Yggdroot/indentLine'
|
||||||
|
@ -78,7 +78,7 @@ Plug 'hrsh7th/nvim-cmp'
|
||||||
Plug 'JuliaEditorSupport/julia-vim'
|
Plug 'JuliaEditorSupport/julia-vim'
|
||||||
|
|
||||||
" --- enhanced python highlighting
|
" --- enhanced python highlighting
|
||||||
Plug 'numirias/semshi', {'do': ':UpdateRemotePlugins'}
|
Plug 'wookayin/semshi', {'do': ':UpdateRemotePlugins'}
|
||||||
|
|
||||||
" --- For golang
|
" --- For golang
|
||||||
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
|
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
|
||||||
|
@ -398,7 +398,7 @@ lua <<EOF
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Setup lspconfig.
|
-- Setup lspconfig.
|
||||||
local capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities())
|
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
||||||
-- Replace <YOUR_LSP_SERVER> with each lsp server you've enabled.
|
-- Replace <YOUR_LSP_SERVER> with each lsp server you've enabled.
|
||||||
require('lspconfig')['pyright'].setup {
|
require('lspconfig')['pyright'].setup {
|
||||||
capabilities = capabilities
|
capabilities = capabilities
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue