presence, lua
This commit is contained in:
parent
58bae2629b
commit
a10d69050a
3 changed files with 13 additions and 2 deletions
2
init.lua
2
init.lua
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
10
plugins/rust-tools.lua
Normal file
10
plugins/rust-tools.lua
Normal file
|
@ -0,0 +1,10 @@
|
|||
return {
|
||||
"simrat39/rust-tools.nvim",
|
||||
opts = {
|
||||
tools = {
|
||||
inlay_hints = {
|
||||
auto = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Reference in a new issue