Nvim: add colorizer plugin
This commit is contained in:
parent
3cd3b232a1
commit
17032b95d0
1 changed files with 7 additions and 4 deletions
|
@ -89,10 +89,7 @@ require('packer').startup(function()
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Configs for built-in LSP
|
-- Configs for built-in LSP
|
||||||
use {
|
use {'neovim/nvim-lspconfig', config = require('plugins.lspconfig').setup}
|
||||||
'neovim/nvim-lspconfig',
|
|
||||||
config = require('plugins.lspconfig').setup
|
|
||||||
}
|
|
||||||
|
|
||||||
-- Additional LSP features for Java
|
-- Additional LSP features for Java
|
||||||
use 'mfussenegger/nvim-jdtls'
|
use 'mfussenegger/nvim-jdtls'
|
||||||
|
@ -173,6 +170,12 @@ require('packer').startup(function()
|
||||||
-- Edit GPG encrypted files transparently
|
-- Edit GPG encrypted files transparently
|
||||||
use 'jamessan/vim-gnupg'
|
use 'jamessan/vim-gnupg'
|
||||||
|
|
||||||
|
-- High performance color highlighter
|
||||||
|
use {
|
||||||
|
'norcalli/nvim-colorizer.lua',
|
||||||
|
config = function() require('colorizer').setup() end
|
||||||
|
}
|
||||||
|
|
||||||
-- If Packer was just installed,
|
-- If Packer was just installed,
|
||||||
-- sync plugins
|
-- sync plugins
|
||||||
if Packer_bootstrap then require('packer').sync() end
|
if Packer_bootstrap then require('packer').sync() end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue