crates.nvim added
This commit is contained in:
parent
069e35a99c
commit
3c06b80f87
|
|
@ -85,6 +85,7 @@ local options = {
|
||||||
{ name = "buffer" },
|
{ name = "buffer" },
|
||||||
{ name = "nvim_lua" },
|
{ name = "nvim_lua" },
|
||||||
{ name = "path" },
|
{ name = "path" },
|
||||||
|
{ name = "crates" },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -63,10 +63,32 @@ M.gitsigns = function()
|
||||||
changedelete = { hl = "GitSignsChange", text = "▎", numhl = "GitSignsChangeNr", linehl = "GitSignsChangeLn" },
|
changedelete = { hl = "GitSignsChange", text = "▎", numhl = "GitSignsChangeNr", linehl = "GitSignsChangeLn" },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
gitsigns.setup(options)
|
gitsigns.setup(options)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
M.crates = function ()
|
||||||
|
local present, crates = pcall(require, "crates")
|
||||||
|
|
||||||
|
if not present then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local options = {
|
||||||
|
popup = {
|
||||||
|
style = "minimal",
|
||||||
|
order = "rounded",
|
||||||
|
show_version_date = false,
|
||||||
|
show_dependency_version = true,
|
||||||
|
max_height = 30,
|
||||||
|
max_width = 20,
|
||||||
|
padding = 1,
|
||||||
|
autofocus = true,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
crates.setup(options)
|
||||||
|
end
|
||||||
|
|
||||||
M.blankline = function()
|
M.blankline = function()
|
||||||
local present, blankline = pcall(require, "indent_blankline")
|
local present, blankline = pcall(require, "indent_blankline")
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,13 @@ local plugins = {
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
["Saecki/crates.nvim"] = {
|
||||||
|
event = { "BufRead Cargo.toml" },
|
||||||
|
config = function ()
|
||||||
|
require("plugins.configs.others").crates()
|
||||||
|
end
|
||||||
|
},
|
||||||
|
|
||||||
-- load luasnips + cmp related in insert mode only
|
-- load luasnips + cmp related in insert mode only
|
||||||
|
|
||||||
["rafamadriz/friendly-snippets"] = {
|
["rafamadriz/friendly-snippets"] = {
|
||||||
|
|
|
||||||
Reference in New Issue