nvim: add lumen and FixCursorHold
This commit is contained in:
parent
2e62c7b12e
commit
5ef57426d7
1 changed files with 6 additions and 2 deletions
|
@ -22,7 +22,6 @@ return require('packer').startup({function()
|
|||
}
|
||||
|
||||
-- Packer
|
||||
-- use 'wbthomason/packer.nvim',
|
||||
use { -- packer: plugin manager
|
||||
'wbthomason/packer.nvim',
|
||||
config = function()
|
||||
|
@ -90,6 +89,9 @@ return require('packer').startup({function()
|
|||
use { -- ifdef-highlighting: highlight c/c++ ifdef's - :Define :Undefine
|
||||
'vim-scripts/ifdef-highlighting'
|
||||
}
|
||||
use { -- lumen: make vim respect the system light/dark theme setting (linux + macos)
|
||||
'vimpostor/vim-lumen',
|
||||
}
|
||||
|
||||
-- IDE features
|
||||
---- LSP
|
||||
|
@ -477,6 +479,9 @@ return require('packer').startup({function()
|
|||
vim.cmd [[ autocmd TextYankPost * if v:event.operator is 'y' && v:event.regname is '+' | execute 'OSCYankReg +' | endif ]]
|
||||
end
|
||||
}
|
||||
use { -- fixcursorhold: fix neovim bug #12587 - https://github.com/neovim/neovim/issues/12587
|
||||
'antoinemadec/FixCursorHold.nvim',
|
||||
}
|
||||
use { -- rhysd: clever-split: split calculation based on pane dimensions - CS or CleverSplit
|
||||
'rhysd/clever-split.vim',
|
||||
config = function()
|
||||
|
@ -544,7 +549,6 @@ return require('packer').startup({function()
|
|||
'tpope/vim-sleuth',
|
||||
}
|
||||
|
||||
|
||||
-- Bootstrap packer if needed {
|
||||
if (packer_bootstrap) then
|
||||
print('Please wait for packer to install plugins')
|
||||
|
|
Loading…
Add table
Reference in a new issue