This commit is contained in:
Henrik Bakken
2024-10-31 11:03:59 +01:00
parent b71591ffbf
commit 09d58f843b
3 changed files with 18 additions and 7 deletions
+2
View File
@@ -63,3 +63,5 @@
old = red bold
new = green bold
whitespace = red reverse
[init]
defaultBranch = main
+1 -1
View File
@@ -1,6 +1,6 @@
#!/bin/bash
LOC=$1
echo "/srv/nfs/state *.hjarl.com(rw,async,no_subtree_check,no_root_squash) 10.0.0.0/16(rw,async,no_subtree_check,no_root_squash)" | sudo bash -c "cat >> /etc/exports"
echo "/srv/nfs/state 10.0.0.0/16(rw,async,no_subtree_check,no_root_squash)" | sudo bash -c "cat >> /etc/exports"
sudo hostnamectl set-hostname ${LOC}
sudo apt install nfs-kernel-server
sudo systemctl enable --now nfs-kernel-server
+15 -6
View File
@@ -269,9 +269,7 @@ require("lazy").setup({
"buffers",
symbols = { alternate_file = "" },
buffers_color = {
-- Same values as the general color option can be used here.
active = { bg = "goldenrod" }, -- Color for active buffer.
-- inactive = { bg = "#009688" }, -- Color for inactive buffer.
active = { bg = "goldenrod" },
},
},
},
@@ -279,7 +277,15 @@ require("lazy").setup({
lualine_c = {},
lualine_x = {},
lualine_y = {},
lualine_z = { "tabs" },
lualine_z = {
{
"tabs",
mode = 2,
tabs_color = {
active = { bg = "goldenrod" },
},
},
},
},
})
end,
@@ -763,8 +769,11 @@ require("lazy").setup({
},
},
},
yaml = {
schemas = { kubernetes = "globPattern" },
yamlls = {
yaml = {
schemas = { kubernetes = "/home/hjalmarlucius/src/hjarl/system/manifests/*.yaml" },
-- schemaStore = { enable = false, url = "" },
},
},
}