nvim: use
no longer causes lua language server to complain
This commit is contained in:
parent
bb2045e72d
commit
b3a1b5c71e
1 changed files with 10 additions and 2 deletions
|
@ -8,6 +8,8 @@ if fn.empty(fn.glob(install_path)) > 0 then
|
|||
end
|
||||
-- }}
|
||||
|
||||
local use = require('packer').use
|
||||
|
||||
return require('packer').startup({function()
|
||||
-- TODO: Find a better way to organize this
|
||||
|
||||
|
@ -42,8 +44,14 @@ return require('packer').startup({function()
|
|||
require('onedark').setup()
|
||||
end
|
||||
}
|
||||
use { -- color tag highlighter
|
||||
'norcalli/nvim-colorizer.lua'
|
||||
use { -- css color tag highlighter (ex: #FFB13B)
|
||||
'norcalli/nvim-colorizer.lua',
|
||||
config = function()
|
||||
vim.cmd 'command! COL ColorizerToggle'
|
||||
end,
|
||||
}
|
||||
use { -- tabline
|
||||
'alvarosevilla95/luatab.nvim'
|
||||
}
|
||||
|
||||
-- IDE features
|
||||
|
|
Loading…
Add table
Reference in a new issue