Formatting

This commit is contained in:
Dreaded_X 2023-04-11 03:10:02 +02:00
parent e3b55ba5dc
commit f48fa6ae87
Signed by: Dreaded_X
GPG Key ID: FA5F485356B0D2D4

View File

@ -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 })