diff --git a/.config/nvim/lua/plugins/astrolsp.lua b/.config/nvim/lua/plugins/astrolsp.lua index 09aaae6..6168c8c 100644 --- a/.config/nvim/lua/plugins/astrolsp.lua +++ b/.config/nvim/lua/plugins/astrolsp.lua @@ -44,6 +44,18 @@ return { -- customize language server configuration options passed to `lspconfig` ---@diagnostic disable: missing-fields config = { + yamlls = { + settings = { + yaml = { + schemas = { + ["https://goreleaser.com/static/schema.json"] = { + ".goreleaser.yaml", + ".goreleaser.yml" + }, + }, + }, + }, + } -- clangd = { capabilities = { offsetEncoding = "utf-8" } }, }, -- customize how language servers are attached diff --git a/.zshrc b/.zshrc index 5830d97..a56fbff 100644 --- a/.zshrc +++ b/.zshrc @@ -3,7 +3,8 @@ # Path to your Oh My Zsh installation. export ZSH="$HOME/.oh-my-zsh" - +export GOPATH=$HOME/go +export PATH=$PATH:$GOPATH/bin # Set name of the theme to load --- if set to "random", it will # load a random theme each time Oh My Zsh is loaded, in which case, # to know which specific one was loaded, run: echo $RANDOM_THEME @@ -106,6 +107,8 @@ source $ZSH/oh-my-zsh.sh alias n='nvim' alias l='lazygit' alias g='git push origin master' +alias gg= 'git pull origin master && git push gitea master' alias sn='shutdown now' alias upd='sudo pacman -Syu' alias ls='eza' +alias ff='fastfetch'