feat: add outbound firewall to server & add helix and zellij
This commit is contained in:
parent
d273765b99
commit
7fcf26263a
23 changed files with 769 additions and 145 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{ lib, ... }:
|
||||
{
|
||||
programs.nvf.settings.vim.statusline = {
|
||||
lualine = {
|
||||
|
|
@ -48,22 +48,24 @@
|
|||
''
|
||||
];
|
||||
c = lib.mkForce [
|
||||
# lua
|
||||
''
|
||||
{
|
||||
"diff",
|
||||
colored = false,
|
||||
diff_color = {
|
||||
-- Same color values as the general color option can be used here.
|
||||
added = 'DiffAdd', -- Changes the diff's added color
|
||||
modified = 'DiffChange', -- Changes the diff's modified color
|
||||
removed = 'DiffDelete', -- Changes the diff's removed color you
|
||||
},
|
||||
symbols = {added = '+', modified = '~', removed = '-'}, -- Changes the diff symbols
|
||||
separator = {right = ''}
|
||||
}
|
||||
{
|
||||
"diff",
|
||||
colored = false,
|
||||
diff_color = {
|
||||
-- Same color values as the general color option can be used here.
|
||||
added = 'DiffAdd', -- Changes the diff's added color
|
||||
modified = 'DiffChange', -- Changes the diff's modified color
|
||||
removed = 'DiffDelete', -- Changes the diff's removed color you
|
||||
},
|
||||
symbols = {added = '+', modified = '~', removed = '-'}, -- Changes the diff symbols
|
||||
separator = {right = ''}
|
||||
}
|
||||
''
|
||||
];
|
||||
x = lib.mkForce [
|
||||
# lua
|
||||
''
|
||||
{
|
||||
-- Lsp server name
|
||||
|
|
@ -93,6 +95,18 @@
|
|||
separator = {left = ''},
|
||||
}
|
||||
''
|
||||
# lua
|
||||
''
|
||||
{
|
||||
-- Recording Status
|
||||
function()
|
||||
local reg = vim.fn.reg_recording()
|
||||
if reg == "" then return "" end
|
||||
return "@" .. reg
|
||||
end,
|
||||
}
|
||||
''
|
||||
# lua
|
||||
''
|
||||
{
|
||||
"diagnostics",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue