presence, lua

This commit is contained in:
Djkáťo 2023-09-27 21:01:40 +02:00
parent 58bae2629b
commit a10d69050a
3 changed files with 13 additions and 2 deletions

View file

@ -43,7 +43,7 @@ return {
-- disable lua_ls formatting capability if you want to use StyLua to format your lua code
-- "lua_ls",
},
timeout_ms = 1000, -- default format timeout
timeout_ms = 100000, -- default format timeout
-- filter = function(client) -- fully override the default formatting function
-- return true
-- end

View file

@ -1,6 +1,7 @@
-- The setup config table shows all available config options with their default values:
return {
"andweeb/presence.nvim",
event = "VeryLazy",
config = function()
require("presence").setup({
-- General options
@ -24,4 +25,4 @@ return {
line_number_text = "Line %s out of %s", -- Format string rendered when `enable_line_number` is set to true (either string or function(line_number: number, line_count: number): string)
})
end
}
}

10
plugins/rust-tools.lua Normal file
View file

@ -0,0 +1,10 @@
return {
"simrat39/rust-tools.nvim",
opts = {
tools = {
inlay_hints = {
auto = false,
},
},
},
}