diff options
| author | Polesznyák Márk <contact@pml68.dev> | 2026-04-03 23:35:12 +0200 |
|---|---|---|
| committer | Polesznyák Márk <contact@pml68.dev> | 2026-04-03 23:35:12 +0200 |
| commit | 0796ae6ed8bbc3c3470adae23c7900e65fdde675 (patch) | |
| tree | 3f930a5465e9f8ca7fa819b463682d3efa850703 | |
| parent | docs(README): update minimum required Neovim version (diff) | |
| download | nvim-0796ae6ed8bbc3c3470adae23c7900e65fdde675.tar.gz | |
feat: enable ui2, add back LspLog command
| -rw-r--r-- | lua/pml68/settings.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/pml68/settings.lua b/lua/pml68/settings.lua index 7007423..071d139 100644 --- a/lua/pml68/settings.lua +++ b/lua/pml68/settings.lua @@ -61,6 +61,16 @@ vim.api.nvim_create_autocmd({ "FileType", "BufEnter", "FocusGained" }, { end }) +vim.api.nvim_create_user_command("LspLog", function(_) + vim.cmd("edit " .. vim.fn.stdpath("state") .. "/lsp.log") +end, { + desc = "Show LSP log", +}) + +require("vim._core.ui2").enable({ + enable = true, +}) + function Status_Line() return " " .. "%<" |
