Skip to content

Commit

Permalink
feat(nvim): remove lsp_lines
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
  • Loading branch information
caarlos0 committed Feb 22, 2024
1 parent 8084665 commit 8e26f2c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions modules/neovim/config/lua/lsp_keymaps.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ M.on_attach = function(bufnr)
keymap("<leader>cl", vim.lsp.codelens.run, bufnr)
keymap("<leader>rn", vim.lsp.buf.rename, bufnr)
keymap("<leader>ca", vim.lsp.buf.code_action, bufnr)
keymap("<leader>gl", function()
require("lsp_lines").toggle()
end, bufnr)
keymap("<leader>gl", vim.diagnostic.open_float, bufnr)
keymap("[d", function()
vim.diagnostic.goto_prev({ float = false })
vim.cmd("norm zz")
Expand Down
1 change: 0 additions & 1 deletion modules/neovim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ in
nvim-surround
comment-nvim
treesj
lsp_lines-nvim
(pkgs.vimPlugins.nvim-treesitter.withPlugins (plugins:
with plugins; [
arduino
Expand Down

0 comments on commit 8e26f2c

Please sign in to comment.