Merge remote-tracking branch 'origin/nixos' into nixos
commit
ce2bddc541
|
@ -236,8 +236,32 @@ with builtins;
|
||||||
keys = [
|
keys = [
|
||||||
{ key = "<leader>tz"; cmd = "<cmd>ZenMode<cr>"; desc = "Zen mode"; }
|
{ key = "<leader>tz"; cmd = "<cmd>ZenMode<cr>"; desc = "Zen mode"; }
|
||||||
];
|
];
|
||||||
|
conf = /* lua */ ''
|
||||||
|
require("zen-mode").setup({
|
||||||
|
plugins = {
|
||||||
|
tmux = {
|
||||||
|
enabled = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
'';
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ plugin = twilight-nvim; }
|
{
|
||||||
|
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",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
'';
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
|
@ -52,7 +52,17 @@ local on_attach_def = function(client, bufnr)
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
t = {
|
t = {
|
||||||
l = { lsp_lines.toggle, "LSP lines" },
|
l = {
|
||||||
|
function()
|
||||||
|
lsp_lines.toggle()
|
||||||
|
if vim.diagnostic.is_disabled() then
|
||||||
|
vim.diagnostic.enable()
|
||||||
|
else
|
||||||
|
vim.diagnostic.disable()
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
"LSP lines",
|
||||||
|
},
|
||||||
i = {
|
i = {
|
||||||
function()
|
function()
|
||||||
vim.lsp.inlay_hint(bufnr, nil)
|
vim.lsp.inlay_hint(bufnr, nil)
|
||||||
|
|
Loading…
Reference in New Issue