Formatting
This commit is contained in:
parent
e3b55ba5dc
commit
f48fa6ae87
|
@ -190,9 +190,12 @@ require('lazy').setup({
|
|||
|
||||
|
||||
-- Fuzzy Finder (files, lsp, etc)
|
||||
{ 'nvim-telescope/telescope.nvim', version = '*',
|
||||
{
|
||||
'nvim-telescope/telescope.nvim',
|
||||
version = '*',
|
||||
dependencies = { 'nvim-lua/plenary.nvim',
|
||||
'nvim-telescope/telescope-ui-select.nvim' } },
|
||||
'nvim-telescope/telescope-ui-select.nvim' }
|
||||
},
|
||||
|
||||
-- Fuzzy Finder Algorithm which requires local dependencies to be built.
|
||||
-- Only load if `make` is available. Make sure you have the system
|
||||
|
@ -377,8 +380,12 @@ vim.diagnostic.config {
|
|||
}
|
||||
|
||||
-- Set the diagnostic symbols (Also used by Neo-tree)
|
||||
local signs = { Error = symbols.diagnostic.error, Warn = symbols.diagnostic.warning, Hint = symbols.diagnostic.hint,
|
||||
Info = symbols.diagnostic.info }
|
||||
local signs = {
|
||||
Error = symbols.diagnostic.error,
|
||||
Warn = symbols.diagnostic.warning,
|
||||
Hint = symbols.diagnostic.hint,
|
||||
Info = symbols.diagnostic.info
|
||||
}
|
||||
for type, icon in pairs(signs) do
|
||||
local hl = "DiagnosticSign" .. type
|
||||
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
|
||||
|
|
Loading…
Reference in New Issue
Block a user