Compare commits
2 commits
9fef3df7ef
...
6984151b2b
| Author | SHA1 | Date | |
|---|---|---|---|
| 6984151b2b | |||
| 78f2adde7f |
2 changed files with 15 additions and 13 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
-- Display attached LSP client
|
||||
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.get_clients({ bufnr = 0 })
|
||||
|
|
|
|||
|
|
@ -1,16 +1,18 @@
|
|||
-- Highlight, list and search todo comments in your projects
|
||||
-- https://github.com/folke/todo-comments.nvim
|
||||
return {
|
||||
"folke/todo-comments.nvim",
|
||||
lazy = true,
|
||||
event = "VimEnter",
|
||||
-- TODO: a todo
|
||||
-- WARN: a warning
|
||||
-- PERF: a performance remark
|
||||
-- NOTE: a note
|
||||
-- FIXME: a fixme
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
opts = { signs = false },
|
||||
"folke/todo-comments.nvim",
|
||||
lazy = true,
|
||||
event = "VimEnter",
|
||||
enabled = true,
|
||||
-- TODO: a todo
|
||||
-- WARN: a warning
|
||||
-- PERF: a performance remark
|
||||
-- NOTE: a note
|
||||
-- FIXME: a fixme
|
||||
-- XXX: something else
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
opts = { signs = false },
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue