update
This commit is contained in:
parent
ebfde2c2f4
commit
e59fa1b32f
8 changed files with 41 additions and 2 deletions
3
.bashrc
3
.bashrc
|
|
@ -29,3 +29,6 @@ alias sudo='sudo '
|
|||
|
||||
eval "$(oh-my-posh init bash --config ~/.config/ohmyposh/config.toml)"
|
||||
|
||||
|
||||
# Generated for envman. Do not edit.
|
||||
[ -s "$HOME/.config/envman/load.sh" ] && source "$HOME/.config/envman/load.sh"
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ return {
|
|||
name = "ollama",
|
||||
schema = {
|
||||
model = {
|
||||
default = "mistral:v0.3",
|
||||
default = "llama3.1:8b",
|
||||
},
|
||||
},
|
||||
env = {
|
||||
|
|
|
|||
|
|
@ -14,6 +14,8 @@ export HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND="bg=none,fg=white,bold"
|
|||
#eval $(thefuck --alias)
|
||||
export GEM_HOME="$HOME/gems"
|
||||
export XCURSOR_SIZE=24
|
||||
export DOCKER_HOST=unix://${XDG_RUNTIME_DIR}/podman/podman.sock
|
||||
export TESTCONTAINERS_RYUK_DISABLED=true
|
||||
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
|
||||
eval "$(ssh-agent -s)" >> /dev/null
|
||||
|
||||
|
|
@ -21,3 +23,4 @@ export PATH="$HOME/.local/bin:$HOME/gems/bin:/usr/local/go/bin:$HOME/go/bin:/hom
|
|||
export PATH="$HOME/.local/bin/DSC:$PATH"
|
||||
|
||||
source $(brew --prefix)/share/zsh-history-substring-search/zsh-history-substring-search.zsh
|
||||
|
||||
|
|
|
|||
|
|
@ -218,6 +218,7 @@ map <leader>GP <Action>(TUILauncher.glab-ci-view-web)
|
|||
let g:WhichKeyDesc_Tools = "<leader>t Tools"
|
||||
let g:WhichKeyDesc_Tools_Copilot = "<leader>tc Continue"
|
||||
let g:WhichKeyDesc_Tools_Debug = "<leader>td Debug"
|
||||
let g:WhichKeyDesc_Tools_Database = "<leader>td Database"
|
||||
let g:WhichKeyDesc_Tools_Terminal = "<leader>tt Terminal"
|
||||
let g:WhichKeyDesc_tools_mergerequest = "<leader>tm Merge Request"
|
||||
let g:WhichKeyDesc_tools_services = "<leader>ts Services"
|
||||
|
|
@ -234,6 +235,7 @@ map <leader>ts <Action>(ActivateServicesToolWindow)
|
|||
map <leader>tk <Action>(TUILauncher.k9s)
|
||||
map <leader>ty <Action>(TUILauncher.yazi)
|
||||
map <leader>tg <Action>(TUILauncher.lazygit)
|
||||
map <leader>tD <Action)(ActivateDatabaseToolWindow)
|
||||
|
||||
" Easy visual indentation
|
||||
vnoremap < <gv
|
||||
|
|
|
|||
|
|
@ -37,6 +37,7 @@
|
|||
wl-clipboard
|
||||
dnsutils
|
||||
golangci-lint
|
||||
caffeine-ng
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
26
.ssh/config
26
.ssh/config
|
|
@ -1,3 +1,23 @@
|
|||
# DevPod Start durpapi.devpod
|
||||
Host durpapi.devpod
|
||||
ForwardAgent yes
|
||||
LogLevel error
|
||||
StrictHostKeyChecking no
|
||||
UserKnownHostsFile /dev/null
|
||||
HostKeyAlgorithms rsa-sha2-256,rsa-sha2-512,ssh-rsa
|
||||
ProxyCommand "/home/user/.var/app/sh.loft.devpod/data/devpod-cli" ssh --stdio --context default --user vscode durpapi
|
||||
User vscode
|
||||
# DevPod End durpapi.devpod
|
||||
# DevPod Start devpod-example-go.devpod
|
||||
Host devpod-example-go.devpod
|
||||
ForwardAgent yes
|
||||
LogLevel error
|
||||
StrictHostKeyChecking no
|
||||
UserKnownHostsFile /dev/null
|
||||
HostKeyAlgorithms rsa-sha2-256,rsa-sha2-512,ssh-rsa
|
||||
ProxyCommand "/home/user/.var/app/sh.loft.devpod/data/devpod-cli" ssh --stdio --context default --user vscode devpod-example-go
|
||||
User vscode
|
||||
# DevPod End devpod-example-go.devpod
|
||||
Host *
|
||||
IdentityAgent none
|
||||
IdentitiesOnly yes
|
||||
|
|
@ -6,4 +26,8 @@ Host *
|
|||
# ForwardAgent yes
|
||||
|
||||
host 192.168.20.253
|
||||
SetEnv TERM=xterm-256color
|
||||
SetEnv TERM=xterm-256color
|
||||
|
||||
Host gitlab.durp.info
|
||||
User git
|
||||
Port 9022
|
||||
|
|
|
|||
3
.zshrc
3
.zshrc
|
|
@ -117,3 +117,6 @@ zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}"
|
|||
zstyle ':completion:*' menu no
|
||||
zstyle ':fzf-tab:complete:cd:*' fzf-preview 'ls --color $realpath'
|
||||
zstyle ':fzf-tab:complete:__zoxide_z:*' fzf-preview 'ls --color $realpath'
|
||||
|
||||
# Generated for envman. Do not edit.
|
||||
[ -s "$HOME/.config/envman/load.sh" ] && source "$HOME/.config/envman/load.sh"
|
||||
|
|
|
|||
|
|
@ -61,6 +61,9 @@ go_apps:
|
|||
- github.com/swaggo/swag/cmd/swag@latest
|
||||
- github.com/air-verse/air@latest
|
||||
- github.com/minio/mc@latest
|
||||
- github.com/sqlc-dev/sqlc/cmd/sqlc@latest
|
||||
- github.com/pressly/goose/v3/cmd/goose@latest
|
||||
- github.com/testcontainers/testcontainers-go
|
||||
|
||||
systemd_service:
|
||||
- libvirtd.service
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue