refactor: add mason.nvim (#89)
This commit is contained in:
parent
03fc837085
commit
4569c97793
1 changed files with 7 additions and 7 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Reference in a new issue