Upd zsh alias

This commit is contained in:
d3m0k1d
2026-02-12 19:01:39 +03:00
parent 4f6e47b2eb
commit 65fc2c31ff
2 changed files with 16 additions and 1 deletions

View File

@@ -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

5
.zshrc
View File

@@ -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'