Compare commits

..

2 commits

Author SHA1 Message Date
6984151b2b fix(lualine): remove unused 2025-05-12 10:39:23 +02:00
78f2adde7f style: reformat todo-comments file 2025-05-12 10:38:17 +02:00
2 changed files with 15 additions and 13 deletions

View file

@ -2,7 +2,7 @@
-- Display attached LSP client -- Display attached LSP client
local function lsp_client_name() local function lsp_client_name()
local bufnr = vim.api.nvim_get_current_buf() -- local bufnr = vim.api.nvim_get_current_buf()
-- local clients = vim.lsp.buf_get_clients(bufnr) -- local clients = vim.lsp.buf_get_clients(bufnr)
local clients = vim.lsp.get_clients({ bufnr = 0 }) local clients = vim.lsp.get_clients({ bufnr = 0 })

View file

@ -1,16 +1,18 @@
-- Highlight, list and search todo comments in your projects -- Highlight, list and search todo comments in your projects
-- https://github.com/folke/todo-comments.nvim -- https://github.com/folke/todo-comments.nvim
return { return {
"folke/todo-comments.nvim", "folke/todo-comments.nvim",
lazy = true, lazy = true,
event = "VimEnter", event = "VimEnter",
-- TODO: a todo enabled = true,
-- WARN: a warning -- TODO: a todo
-- PERF: a performance remark -- WARN: a warning
-- NOTE: a note -- PERF: a performance remark
-- FIXME: a fixme -- NOTE: a note
dependencies = { -- FIXME: a fixme
"nvim-lua/plenary.nvim", -- XXX: something else
}, dependencies = {
opts = { signs = false }, "nvim-lua/plenary.nvim",
},
opts = { signs = false },
} }