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
|
||||
use {
|
||||
'neovim/nvim-lspconfig',
|
||||
config = require('plugins.lspconfig').setup
|
||||
}
|
||||
use {'neovim/nvim-lspconfig', config = require('plugins.lspconfig').setup}
|
||||
|
||||
-- Additional LSP features for Java
|
||||
use 'mfussenegger/nvim-jdtls'
|
||||
|
@ -173,6 +170,12 @@ require('packer').startup(function()
|
|||
-- Edit GPG encrypted files transparently
|
||||
use 'jamessan/vim-gnupg'
|
||||
|
||||
-- High performance color highlighter
|
||||
use {
|
||||
'norcalli/nvim-colorizer.lua',
|
||||
config = function() require('colorizer').setup() end
|
||||
}
|
||||
|
||||
-- If Packer was just installed,
|
||||
-- sync plugins
|
||||
if Packer_bootstrap then require('packer').sync() end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue