Compare commits

..

No commits in common. "6984151b2b26e321ad2786c660df16360ea9c96c" and "9fef3df7ef3c385c98e1cc9a42567f79d3e2669c" have entirely different histories.

2 changed files with 13 additions and 15 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,18 +1,16 @@
-- 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",
enabled = true, -- TODO: a todo
-- TODO: a todo -- WARN: a warning
-- WARN: a warning -- PERF: a performance remark
-- PERF: a performance remark -- NOTE: a note
-- NOTE: a note -- FIXME: a fixme
-- FIXME: a fixme dependencies = {
-- XXX: something else "nvim-lua/plenary.nvim",
dependencies = { },
"nvim-lua/plenary.nvim", opts = { signs = false },
},
opts = { signs = false },
} }