nvim: add config files

This commit is contained in:
2026-01-17 21:17:29 +00:00
parent d1cf18299e
commit ecefe3b413
30 changed files with 923 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
ssh_client = os.getenv("SSH_CLIENT")
if ssh_client == nil or string.len(ssh_client) == 0 then
return {
"f-person/auto-dark-mode.nvim",
priority = 1100,
opts = {
update_interval = 1000,
set_dark_mode = function()
vim.cmd("colorscheme catppuccin-mocha")
end,
set_light_mode = function()
vim.cmd("colorscheme catppuccin-latte")
end,
},
}
else
return {}
end