Compare commits
4 Commits
54e0730c7a
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
| e720803df3 | |||
| eec13f5340 | |||
| 9b2a0db18a | |||
| 8d03b08ba3 |
@@ -14,9 +14,9 @@
|
||||
"nightfox.nvim": { "branch": "main", "commit": "ba47d4b4c5ec308718641ba7402c143836f35aa9" },
|
||||
"nvim-cmp": { "branch": "main", "commit": "a1d504892f2bc56c2e79b65c6faded2fd21f3eca" },
|
||||
"nvim-lsp-file-operations": { "branch": "master", "commit": "b9c795d3973e8eec22706af14959bc60c579e771" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "b80f82f59544f0770981b5a6c7d129ca276dab36" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "e05fb8c3bd61d909dacff24f77f23beb644daf54" },
|
||||
"nvim-treesitter": { "branch": "main", "commit": "4916d6592ede8c07973490d9322f187e07dfefac" },
|
||||
"plenary.nvim": { "branch": "master", "commit": "74b06c6c75e4eeb3108ec01852001636d85a932b" },
|
||||
"telescope-fzf-native.nvim": { "branch": "main", "commit": "6fea601bd2b694c6f2ae08a6c6fab14930c60e2c" },
|
||||
"telescope.nvim": { "branch": "master", "commit": "471eebb1037899fd942cc0f52c012f8773505da1" }
|
||||
"telescope.nvim": { "branch": "master", "commit": "028d9a0695a0cc4cfa893889f8c408ed7ccc8adc" }
|
||||
}
|
||||
|
||||
@@ -97,7 +97,7 @@ return {
|
||||
plugins = {
|
||||
{
|
||||
name = '@vue/typescript-plugin',
|
||||
location = '/home/antoxa/.nvm/versions/node/v24.13.0/lib/node_modules/@vue/typescript-plugin',
|
||||
location = '/home/antoxa/.nvm/versions/node/v24.15.0/lib/node_modules/@vue/typescript-plugin',
|
||||
languages = { 'vue' }
|
||||
}
|
||||
}
|
||||
@@ -134,9 +134,9 @@ return {
|
||||
-- end,
|
||||
-- })
|
||||
|
||||
vim.lsp.config('graphql', {
|
||||
filetypes = { 'graphql', 'gql', 'svelte', 'typescriptreact', 'javascriptreact' },
|
||||
})
|
||||
-- vim.lsp.config('graphql', {
|
||||
-- filetypes = { 'graphql', 'gql', 'svelte', 'typescriptreact', 'javascriptreact' },
|
||||
-- })
|
||||
|
||||
vim.lsp.config('emmet_ls', {
|
||||
filetypes = { "html", "typescriptreact", "javascriptreact", "css", "sass", "scss", "less", "svelte" },
|
||||
|
||||
+19
-3
@@ -1,15 +1,31 @@
|
||||
# Paths.
|
||||
export ZDOTDIR="$HOME/.config/zsh"
|
||||
|
||||
# Utils.
|
||||
# Functions
|
||||
source "$ZDOTDIR/functions"
|
||||
|
||||
# Include files.
|
||||
zsh_include_file "includes/environment"
|
||||
zsh_include_file "includes/aliases"
|
||||
zsh_include_file "includes/prompt"
|
||||
zsh_include_file "includes/nvm"
|
||||
|
||||
# Add plugins.
|
||||
# zsh_add_plugin "hlissner/zsh-autopair"
|
||||
zsh_add_plugin "zsh-users/zsh-syntax-highlighting"
|
||||
|
||||
export EDITOR="vim"
|
||||
export TERMINAL="st"
|
||||
|
||||
# NVM.
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
|
||||
|
||||
# opencode
|
||||
export PATH=/home/antoxa/.opencode/bin:$PATH
|
||||
|
||||
# claude
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
export ANTHROPIC_BASE_URL=http://localhost:20128/v1
|
||||
export CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS=1
|
||||
export ANTHROPIC_MODEL=kr/claude-sonnet-4.5
|
||||
# export ANTHROPIC_AUTH_TOKEN=secret-api-key
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# bun
|
||||
export BUN_INSTALL="$HOME/.bun"
|
||||
export PATH="$BUN_INSTALL/bin:$PATH"
|
||||
|
||||
# bun completions
|
||||
[ -s "/home/antoxa/.bun/_bun" ] && source "/home/antoxa/.bun/_bun"
|
||||
@@ -1,4 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
export EDITOR="vim"
|
||||
export TERMINAL="st"
|
||||
@@ -1,6 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# NVM.
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
|
||||
-16
@@ -1,17 +1 @@
|
||||
source $HOME/.config/zsh/.zshrc
|
||||
|
||||
export NVM_DIR="$HOME/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||
|
||||
## [Completion]
|
||||
## Completion scripts setup. Remove the following line to uninstall
|
||||
[[ -f /home/antoxa/.dart-cli-completion/zsh-config.zsh ]] && . /home/antoxa/.dart-cli-completion/zsh-config.zsh || true
|
||||
## [/Completion]
|
||||
|
||||
|
||||
# opencode
|
||||
export PATH=/home/antoxa/.opencode/bin:$PATH
|
||||
|
||||
# claude
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
|
||||
Reference in New Issue
Block a user