refactor: add mason.nvim (#89)

This commit is contained in:
Matthew Leong 2022-12-29 09:48:42 -08:00
parent 03fc837085
commit 4569c97793

View file

@ -1,13 +1,13 @@
local map = require('cosmic.utils').map local map = require('cosmic.utils').map
map('n', '<c-k>', function()
if not require('noice.lsp').scroll(4) then
return '<c-k>'
end
end)
map('n', '<c-j>', function() map('n', '<c-j>', function()
if not require('noice.lsp').scroll(-4) then if not require('noice.lsp').scroll(4) then
return '<c-j>' return '<c-j>'
end end
end) end)
map('n', '<c-k>', function()
if not require('noice.lsp').scroll(-4) then
return '<c-k>'
end
end)