Update font in Ghostty, add YAML LSP settings to Neovim

This commit is contained in:
Ben Kreeger 2025-09-26 11:30:10 -05:00
parent 4bc2f8de91
commit 6e9435bc75
Signed by: kreeger
GPG Key ID: D5CF8683D4BE4B50
2 changed files with 27 additions and 2 deletions

View File

@ -3,13 +3,13 @@ adjust-cell-height = 30%
adjust-cell-width = -9%
cursor-style = block
cursor-style-blink = false
font-family = Inconsolata Patched G
font-family = Google Sans Code NF
font-size = 12
font-synthetic-style = no-bold, no-bold-italic
# Window style
background-blur = true
background-opacity = 0.9
background-opacity = 0.88
theme = dark:catppuccin-mocha.conf, light:catppuccin-latte.conf
window-padding-color = extend
window-padding-x = 5,0

25
nvim/lsp/yamlls.lua Normal file
View File

@ -0,0 +1,25 @@
return {
settings = {
yaml = {
schemaStore = {
enable = false,
url = "",
},
schemas = require("schemastore").yaml.schemas({
select = {
"Ansible Inventory",
"Ansible Rulebook",
"Ansible Collection Galaxy",
"Ansible Playbook",
"Ansible Tasks File",
"Ansible Requirements",
"Ansible Vars File",
"kustomization.yaml",
"docker-compose.yml",
"GitHub Workflow",
},
}),
validate = { enable = true },
},
},
}