This commit is contained in:
Dmitri 2026-04-22 20:59:17 +02:00
parent a8249238b0
commit 0cef4d924f
Signed by: kanopo
GPG Key ID: 759ADD40E3132AC7
3 changed files with 3900 additions and 22 deletions

11
.zshrc
View File

@ -17,9 +17,9 @@ plug "romkatv/powerlevel10k"
#
#
# # Load and initialise completion system
# autoload -Uz compinit
# fpath+=~/.zfunc
# compinit
autoload -Uz compinit
fpath+=~/.zfunc
compinit
# # nvm initialization
# source /usr/share/nvm/init-nvm.sh
@ -38,10 +38,7 @@ export GPG_TTY=$(tty)
export EDITOR="nvim"
source /usr/share/nvm/init-nvm.sh
source "/home/user/.sdkman/bin/sdkman-init.sh"
source "/home/user/.cargo/env"
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
export KUBECONFIG=~/.kube/config-server
source ~/.cargo/env

View File

@ -107,7 +107,6 @@ return {
tailwindcss = {},
ts_ls = {},
gopls = {},
postgres_lsp = {},
gitlab_ci_ls = {},
bicep = {},
yamlls = {
@ -115,6 +114,18 @@ return {
"yaml.gitlab",
},
},
rust_analyzer = {},
postgres_lsp = {
single_file_support = true,
root_dir = function(bufnr, on_dir)
local fname = vim.api.nvim_buf_get_name(bufnr)
local root = vim.fs.root(fname, {
"postgres-language-server.jsonc",
".git",
})
on_dir(root or vim.uv.cwd())
end,
},
lua_ls = {
settings = {
Lua = {

File diff suppressed because it is too large Load Diff