summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/lua/plugins/lspstatus.lua
blob: 923209bc37f05cb82232c0a383b543266dc49d8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local lsp_status = require 'lsp-status'
lsp_status.status()
lsp_status.register_progress()
lsp_status.config({
    indicator_errors = "",
    indicator_warnings = "",
    indicator_info = "",
    indicator_hint = "",
    indicator_ok = "",
    current_function = true,
    update_interval = 100,
    status_symbol = ' 🇻',
})