Skip to main content

Getting started

Installation

You can install care with your favourite package manager. How you set up mappings is the same for every package manager.

Mappings snippet
vim.keymap.set("i", "<c-n>", function()
vim.snippet.jump(1)
end)
vim.keymap.set("i", "<c-p>", function()
vim.snippet.jump(-1)
end)
vim.keymap.set("i", "<c-space>", function()
require("care").api.complete()
end)

vim.keymap.set("i", "<cr>", "<Plug>(CareConfirm)")
vim.keymap.set("i", "<c-e>", "<Plug>(CareClose)")
vim.keymap.set("i", "<tab>", "<Plug>(CareSelectNext)")
vim.keymap.set("i", "<s-tab>", "<Plug>(CareSelectPrev)")

vim.keymap.set("i", "<c-f>", function()
if require("care").api.doc_is_open() then
require("care").api.scroll_docs(4)
else
vim.api.nvim_feedkeys(vim.keycode("<c-f>"), "n", false)
end
end)

vim.keymap.set("i", "<c-d>", function()
if require("care").api.doc_is_open() then
require("care").api.scroll_docs(-4)
else
vim.api.nvim_feedkeys(vim.keycode("<c-f>"), "n", false)
end
end)

Lazy.nvim

If you have enabled rockspec support you can simply install care.nvim as any other plugin.

It is recommended to not lazyload this plugin since it is already lazy loaded internally.

Installation snippet with rockspec support
{
"max397574/care.nvim",
config = function()
-- Set up mappings here
end
}

If you don't have rockspec support you need to install fzy as a dependency.

Installation snippet without rockspec
{
"max397574/care.nvim",
dependencies = {
{
"romgrk/fzy-lua-native",
build = "make" -- optional, uses faster native version
}
},
config = function()
-- Set up mappings here
end
}

Rocks.nvim

Development

See the devloper documentation for more information about the code and developing sources.