Compare commits

..

No commits in common. "d4be10dddacf1a120eca310461f2051a0d5ffc6d" and "12a5420ee928e05fddb522aad77a8a52874e52b3" have entirely different histories.

2 changed files with 2 additions and 36 deletions

View File

@ -316,32 +316,8 @@ with builtins;
keys = [
{ key = "<leader>tz"; cmd = "<cmd>ZenMode<cr>"; desc = "Zen mode"; }
];
conf = /* lua */ ''
require("zen-mode").setup({
plugins = {
tmux = {
enabled = true,
},
},
})
'';
dependencies = [
{
plugin = twilight-nvim;
conf = /* lua */ ''
require("twilight").setup({
context = 20,
expand = { -- for treesitter, we we always try to expand to the top-most ancestor with these types
"function",
"function_definition",
"if_statement",
"method",
"method_definition",
"table",
},
})
'';
}
{ plugin = twilight-nvim; }
];
}
];

View File

@ -52,17 +52,7 @@ local on_attach_def = function(client, bufnr)
},
},
t = {
l = {
function()
lsp_lines.toggle()
if vim.diagnostic.is_disabled() then
vim.diagnostic.enable()
else
vim.diagnostic.disable()
end
end,
"LSP lines",
},
l = { lsp_lines.toggle, "LSP lines" },
i = {
function()
vim.lsp.inlay_hint(bufnr, nil)