nvim: update deps

This commit is contained in:
Marco Thomas
2022-08-12 15:26:37 +02:00
parent 3b7acba218
commit 4ec8d449ef
2 changed files with 8 additions and 4 deletions

View File

@@ -52,7 +52,6 @@ lsp.texlab.setup({
local opts = { local opts = {
tools = { tools = {
autoSetHints = true, autoSetHints = true,
hover_with_actions = true,
inlay_hints = { inlay_hints = {
show_parameter_hints = false, show_parameter_hints = false,
parameter_hints_prefix = "", parameter_hints_prefix = "",

View File

@@ -54,8 +54,13 @@ return require('packer').startup(function(use)
config = function() config = function()
require('lualine').setup({ require('lualine').setup({
options = { options = {
theme = 'everforest' theme = 'everforest',
}, },
-- tabline = {
-- lualine_c = {
-- require('nvim-navic').get_location
-- }
-- },
sections = { sections = {
lualine_b = { lualine_b = {
'branch', 'branch',
@@ -97,8 +102,8 @@ return require('packer').startup(function(use)
local space = vim.fn.search([[\s\+$]], 'nwc') local space = vim.fn.search([[\s\+$]], 'nwc')
return space ~= 0 and "TW:" .. space or "" return space ~= 0 and "TW:" .. space or ""
end end
} },
} },
}) })
end, end,
}) })