Compare commits
22 Commits
27d31c4152
...
renovate/l
Author | SHA1 | Date | |
---|---|---|---|
b1eb5f2fd4 | |||
c815282fed | |||
65f354117c | |||
42798bd8f5 | |||
5810aed37d | |||
18243d53ac | |||
1be7fdad9b | |||
7925819b48 | |||
4236d03d18 | |||
e6a3064f30 | |||
2302e4ca7d | |||
d8758554f6 | |||
feda9d1de1 | |||
400a7f2488 | |||
9fe182d987 | |||
c0234d5ae4 | |||
82122426f1 | |||
056567e88b | |||
79289c0360 | |||
1b0fed7cf9 | |||
ef6dda89ba | |||
124b6e7c3b |
26
Dockerfile
26
Dockerfile
@@ -105,16 +105,16 @@ RUN apt-get update \
|
|||||||
&& echo 'permit persist :wheel as root' > /etc/doas.conf
|
&& echo 'permit persist :wheel as root' > /etc/doas.conf
|
||||||
|
|
||||||
# command line utilities
|
# command line utilities
|
||||||
ENV DO_VERSION 28.1.1
|
ENV DO_VERSION 28.3.2
|
||||||
ENV DO_URL https://download.docker.com/linux/static/stable/x86_64/docker-${DO_VERSION}.tgz
|
ENV DO_URL https://download.docker.com/linux/static/stable/x86_64/docker-${DO_VERSION}.tgz
|
||||||
ENV DC_VERSION v2.36.0
|
ENV DC_VERSION v2.38.2
|
||||||
ENV DC_URL https://github.com/docker/compose/releases/download/${DC_VERSION}/docker-compose-linux-x86_64
|
ENV DC_URL https://github.com/docker/compose/releases/download/${DC_VERSION}/docker-compose-linux-x86_64
|
||||||
ENV BX_VERSION v0.23.0
|
ENV BX_VERSION v0.25.0
|
||||||
ENV BX_URL https://github.com/docker/buildx/releases/download/${BX_VERSION}/buildx-${BX_VERSION}.linux-amd64
|
ENV BX_URL https://github.com/docker/buildx/releases/download/${BX_VERSION}/buildx-${BX_VERSION}.linux-amd64
|
||||||
ENV EXERCISM_VERSION 3.5.4
|
ENV EXERCISM_VERSION 3.5.4
|
||||||
ENV EXERCISM_FILE exercism-${EXERCISM_VERSION}-linux-x86_64.tar.gz
|
ENV EXERCISM_FILE exercism-${EXERCISM_VERSION}-linux-x86_64.tar.gz
|
||||||
ENV EXERCISM_URL https://github.com/exercism/cli/releases/download/v${EXERCISM_VERSION}/${EXERCISM_FILE}
|
ENV EXERCISM_URL https://github.com/exercism/cli/releases/download/v${EXERCISM_VERSION}/${EXERCISM_FILE}
|
||||||
ENV NVIM_VERSION v0.11.0
|
ENV NVIM_VERSION v0.11.3
|
||||||
ENV NVIM_FILE nvim-linux-x86_64.tar.gz
|
ENV NVIM_FILE nvim-linux-x86_64.tar.gz
|
||||||
ENV NVIM_URL https://github.com/neovim/neovim/releases/download/${NVIM_VERSION}/${NVIM_FILE}
|
ENV NVIM_URL https://github.com/neovim/neovim/releases/download/${NVIM_VERSION}/${NVIM_FILE}
|
||||||
RUN curl -sS https://starship.rs/install.sh | sh -s -- --yes \
|
RUN curl -sS https://starship.rs/install.sh | sh -s -- --yes \
|
||||||
@@ -153,24 +153,6 @@ ENV XDG_CACHE_HOME ${HOME}/.cache
|
|||||||
ENV STARSHIP_CONFIG ${XDG_CONFIG_HOME}/starship/config.toml
|
ENV STARSHIP_CONFIG ${XDG_CONFIG_HOME}/starship/config.toml
|
||||||
ENV PATH ${LOCAL_BIN_HOME}:$PATH
|
ENV PATH ${LOCAL_BIN_HOME}:$PATH
|
||||||
|
|
||||||
# NOTE (jpd): the section below exists mainly to handle a project running elixir 1.11.
|
|
||||||
# It allows the usage of openssl 1.1 and a compatible elixir-ls.
|
|
||||||
|
|
||||||
# configure openssl 1.1
|
|
||||||
# this is needed to compile older erlang versions
|
|
||||||
# example: KERL_CONFIGURE_OPTIONS="-with-ssl=$HOME/.local/lib/ssl" mise install
|
|
||||||
RUN mkdir -p ${HOME}/.local/src \
|
|
||||||
&& cd ${HOME}/.local/src \
|
|
||||||
&& curl -L https://www.openssl.org/source/openssl-1.1.1m.tar.gz | tar -xz \
|
|
||||||
&& cd openssl-1.1.1m \
|
|
||||||
&& ./config --prefix=${HOME}/.local/lib/ssl --openssldir=${HOME}/.local/lib/ssl shared zlib \
|
|
||||||
&& make \
|
|
||||||
# && make test \
|
|
||||||
&& make install
|
|
||||||
|
|
||||||
# fetch elixir-ls to install custom releases
|
|
||||||
RUN git clone https://github.com/elixir-lsp/elixir-ls.git ${LOCAL_SRC_HOME}/elixir-ls
|
|
||||||
|
|
||||||
# command line utilities
|
# command line utilities
|
||||||
ENV MISE_ENV_FILE .env
|
ENV MISE_ENV_FILE .env
|
||||||
RUN curl https://mise.jdx.dev/install.sh | sh \
|
RUN curl https://mise.jdx.dev/install.sh | sh \
|
||||||
|
12
Makefile
12
Makefile
@@ -16,6 +16,18 @@ patch_init_lua: ## create a patch file with the changes made in kickstart's init
|
|||||||
patch_init_lua_dry_run: ## show the changes made in kickstart's init.lua file
|
patch_init_lua_dry_run: ## show the changes made in kickstart's init.lua file
|
||||||
@cd $(neovim_config_dir) && git diff --patch init.lua
|
@cd $(neovim_config_dir) && git diff --patch init.lua
|
||||||
|
|
||||||
|
.PHONY: diff_mcphub_config
|
||||||
|
diff_mcphub_config: ## compare host's mcphub config with repository's config
|
||||||
|
@nvim -d ~/.config/mcphub/servers.json ./config/mcphub/servers.json
|
||||||
|
|
||||||
|
.PHONY: diff_mise_config
|
||||||
|
diff_mise_config: ## compare host's mise config with repository's config
|
||||||
|
@nvim -d ~/.config/mise/config.toml ./config/mise/config.toml
|
||||||
|
|
||||||
|
.PHONY: diff_custom_neovim_config
|
||||||
|
diff_custom_neovim_config: ## compare host's custom neovim config with repository's config
|
||||||
|
@nvim -d ~/.config/nvim/lua/custom/plugins/init.lua ./config/nvim/lua/custom/plugins/init.lua
|
||||||
|
|
||||||
.PHONY: help
|
.PHONY: help
|
||||||
help: ## show help message
|
help: ## show help message
|
||||||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
||||||
|
@@ -7,15 +7,49 @@
|
|||||||
"@upstash/context7-mcp@latest"
|
"@upstash/context7-mcp@latest"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"fetch": {
|
||||||
|
"command": "uvx",
|
||||||
|
"args": [
|
||||||
|
"mcp-server-fetch"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"filesystem": {
|
||||||
|
"command": "pnpm",
|
||||||
|
"args": [
|
||||||
|
"dlx",
|
||||||
|
"@modelcontextprotocol/server-filesystem@latest",
|
||||||
|
"/opt/personal",
|
||||||
|
"/opt/work"
|
||||||
|
]
|
||||||
|
},
|
||||||
"git": {
|
"git": {
|
||||||
"command": "uvx",
|
"command": "uvx",
|
||||||
"args": [
|
"args": [
|
||||||
"mcp-server-git"
|
"mcp-server-git"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"vectorcode": {
|
"memory": {
|
||||||
"command": "vectorcode-mcp-server",
|
"command": "pnpm",
|
||||||
"args": []
|
"args": [
|
||||||
|
"dlx",
|
||||||
|
"@modelcontextprotocol/server-memory@latest"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"serena": {
|
||||||
|
"command": "uvx",
|
||||||
|
"arg": [
|
||||||
|
"--from",
|
||||||
|
"git+https://github.com/oraios/serena",
|
||||||
|
"serena-mcp-server",
|
||||||
|
"--transport",
|
||||||
|
"stdio",
|
||||||
|
"--enable-web-dashboard",
|
||||||
|
"False",
|
||||||
|
"--enable-gui-log-window",
|
||||||
|
"False",
|
||||||
|
"--tool-timeout",
|
||||||
|
"30"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,58 +1,55 @@
|
|||||||
[tools]
|
[tools]
|
||||||
"aqua:BurntSushi/ripgrep" = "14.1.1"
|
"aqua:BurntSushi/ripgrep" = "14.1.1"
|
||||||
"aqua:CircleCI-Public/circleci-cli" = "0.1.32067"
|
|
||||||
"aqua:FiloSottile/age" = "1.2.1"
|
"aqua:FiloSottile/age" = "1.2.1"
|
||||||
"aqua:ajeetdsouza/zoxide" = "0.9.8"
|
"aqua:ajeetdsouza/zoxide" = "0.9.8"
|
||||||
"aqua:alexellis/k3sup" = "0.13.9"
|
"aqua:alexellis/k3sup" = "0.13.10"
|
||||||
"aqua:astral-sh/uv" = "0.7.8"
|
"aqua:astral-sh/uv" = "0.7.20"
|
||||||
"aqua:aws/aws-cli" = "2.27.23"
|
"aqua:aws/aws-cli" = "2.27.50"
|
||||||
"aqua:bitwarden/clients" = "cli-v2025.2.0"
|
"aqua:bitwarden/clients" = "cli-v2025.5.0"
|
||||||
"aqua:dagger/dagger" = "0.18.9"
|
"aqua:dagger/dagger" = "0.18.12"
|
||||||
"aqua:derailed/k9s" = "0.50.6"
|
"aqua:derailed/k9s" = "0.50.7"
|
||||||
"aqua:eksctl-io/eksctl" = "0.208.0"
|
"aqua:eksctl-io/eksctl" = "0.210.0"
|
||||||
"aqua:evilmartians/lefthook" = "1.11.13"
|
"aqua:evilmartians/lefthook" = "1.12.2"
|
||||||
"aqua:eza-community/eza" = "0.21.3"
|
"aqua:eza-community/eza" = "0.22.1"
|
||||||
"aqua:github-cli" = "2.73.0"
|
"aqua:github-cli" = "2.75.0"
|
||||||
"aqua:go-task/task" = "3.43.3"
|
"aqua:go-task/task" = "3.44.0"
|
||||||
"aqua:hashicorp/terraform" = "1.12.1"
|
"aqua:hashicorp/terraform" = "1.12.2"
|
||||||
"aqua:helm/helm" = "3.18.0"
|
"aqua:helm/helm" = "3.18.4"
|
||||||
"aqua:jj-vcs/jj" = "0.29.0"
|
"aqua:jj-vcs/jj" = "0.31.0"
|
||||||
"aqua:junegunn/fzf" = "0.62.0"
|
"aqua:junegunn/fzf" = "0.64.0"
|
||||||
"aqua:k3d-io/k3d" = "5.8.3"
|
"aqua:k3d-io/k3d" = "5.8.3"
|
||||||
"aqua:kubernetes-sigs/kind" = "0.29.0"
|
"aqua:kubernetes-sigs/kind" = "0.29.0"
|
||||||
"aqua:kubernetes/kubectl" = "1.33.1"
|
"aqua:kubernetes/kubectl" = "1.33.2"
|
||||||
"aqua:pnpm/pnpm" = "10.11.0"
|
"aqua:pnpm/pnpm" = "10.13.1"
|
||||||
"aqua:sbstp/kubie" = "0.25.2"
|
"aqua:sbstp/kubie" = "0.26.0"
|
||||||
"aqua:sharkdp/bat" = "0.25.0"
|
"aqua:sharkdp/bat" = "0.25.0"
|
||||||
"aqua:starship/starship" = "1.23.0"
|
"aqua:starship/starship" = "1.23.0"
|
||||||
"aqua:tilt-dev/ctlptl" = "0.8.42"
|
"aqua:tilt-dev/ctlptl" = "0.8.42"
|
||||||
"aqua:tilt-dev/tilt" = "0.34.4"
|
"aqua:tilt-dev/tilt" = "0.35.0"
|
||||||
"aqua:xo/usql" = "0.19.24"
|
"npm:@anthropic-ai/claude-code" = "1.0.51"
|
||||||
"go:github.com/bloznelis/typioca" = "3.1.0"
|
"npm:@google/gemini-cli" = "0.1.12"
|
||||||
"npm:@anthropic-ai/claude-code" = "1.0.4"
|
"pipx:aider-chat" = { version = "0.85.1", uvx_args = "--python 3.12.10 --with google-generativeai" }
|
||||||
"pipx:aider-chat" = { version = "0.83.2", uvx_args = "--python 3.12.10 --with google-generativeai" }
|
"pipx:httpie" = { version = "3.2.4", uvx_args = "--python 3.13.3" }
|
||||||
"pipx:vectorcode" = { version = "0.6.9", uvx_args = "--python 3.13.3", extras = "mcp" }
|
|
||||||
"ubi:Samyak2/toipe" = "0.5.0"
|
"ubi:Samyak2/toipe" = "0.5.0"
|
||||||
"ubi:block/goose" = "1.0.24"
|
"ubi:comtrya/comtrya" = "0.9.2"
|
||||||
"ubi:hlsxx/tukai" = "0.2.2"
|
"ubi:hlsxx/tukai" = "0.2.2"
|
||||||
"ubi:jdx/usage" = "2.1.1"
|
"ubi:jdx/usage" = "2.2.0"
|
||||||
"ubi:max-niederman/ttyper" = "1.6.0"
|
"ubi:max-niederman/ttyper" = "1.6.0"
|
||||||
"ubi:supabase/cli" = { version = "2.23.4", exe = "supabase" }
|
"ubi:sst/opencode" = "0.3.2"
|
||||||
"ubi:wagoodman/dive" = "0.13.1"
|
"ubi:wagoodman/dive" = "0.13.1"
|
||||||
elixir = "1.18.4"
|
elixir = "1.18.4"
|
||||||
erlang = "28.0"
|
erlang = "28.0.2"
|
||||||
go = "1.24.3"
|
go = "1.24.5"
|
||||||
lua = "5.1.5"
|
lua = "5.4.8"
|
||||||
luajit = "2.0.5"
|
luajit = "2.0.5"
|
||||||
node = "22.16.0"
|
node = "24.4.1"
|
||||||
poetry = "2.1.3"
|
|
||||||
python = "3.13.5"
|
python = "3.13.5"
|
||||||
r = "4.5.0"
|
r = "4.5.1"
|
||||||
rust = "1.87.0"
|
rust = "1.88.0"
|
||||||
yarn = "1.22.22"
|
|
||||||
|
|
||||||
[settings]
|
[settings]
|
||||||
experimental = true
|
experimental = true
|
||||||
python_compile = true
|
python_compile = true
|
||||||
|
idiomatic_version_file_enable_tools = ["go", "ruby", "python"]
|
||||||
|
|
||||||
[env]
|
[env]
|
||||||
|
@@ -155,36 +155,6 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
'Davidyz/VectorCode',
|
|
||||||
dependencies = {
|
|
||||||
'nvim-lua/plenary.nvim',
|
|
||||||
},
|
|
||||||
version = vim.fn.system { 'mise', 'current', 'pipx:vectorcode' },
|
|
||||||
opts = function()
|
|
||||||
return {
|
|
||||||
async_opts = {
|
|
||||||
debounce = 10,
|
|
||||||
events = { 'BufWritePost', 'InsertEnter', 'BufReadPost' },
|
|
||||||
exclude_this = true,
|
|
||||||
n_query = 1,
|
|
||||||
notify = false,
|
|
||||||
query_cb = require('vectorcode.utils').make_surrounding_lines_cb(-1),
|
|
||||||
run_on_register = false,
|
|
||||||
},
|
|
||||||
async_backend = 'default',
|
|
||||||
exclude_this = true,
|
|
||||||
n_query = 1,
|
|
||||||
notify = true,
|
|
||||||
timeout_ms = 5000,
|
|
||||||
on_setup = {
|
|
||||||
update = false,
|
|
||||||
lsp = false,
|
|
||||||
},
|
|
||||||
sync_log_env_var = false,
|
|
||||||
}
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
'olimorris/codecompanion.nvim',
|
'olimorris/codecompanion.nvim',
|
||||||
dependencies = {
|
dependencies = {
|
||||||
@@ -214,7 +184,7 @@ return {
|
|||||||
name = 'gemini_pro',
|
name = 'gemini_pro',
|
||||||
schema = {
|
schema = {
|
||||||
model = {
|
model = {
|
||||||
default = 'gemini-2.5-pro-preview-05-06',
|
default = 'gemini-2.5-pro',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@@ -224,7 +194,7 @@ return {
|
|||||||
name = 'gemini_flash',
|
name = 'gemini_flash',
|
||||||
schema = {
|
schema = {
|
||||||
model = {
|
model = {
|
||||||
default = 'gemini-2.0-flash',
|
default = 'gemini-2.5-flash',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
@@ -319,9 +289,8 @@ return {
|
|||||||
'claude-sonnet-4-20250514',
|
'claude-sonnet-4-20250514',
|
||||||
},
|
},
|
||||||
gemini = {
|
gemini = {
|
||||||
'gemini-2.5-pro-preview-05-06',
|
'gemini-2.5-pro',
|
||||||
'gemini-2.5-flash-preview-05-20',
|
'gemini-2.5-flash',
|
||||||
'gemini-2.0-flash',
|
|
||||||
},
|
},
|
||||||
groq = {
|
groq = {
|
||||||
'deepseek-r1-distill-llama-70b',
|
'deepseek-r1-distill-llama-70b',
|
||||||
@@ -434,24 +403,42 @@ return {
|
|||||||
local hub = require('mcphub').get_hub_instance()
|
local hub = require('mcphub').get_hub_instance()
|
||||||
return hub and hub:get_active_servers_prompt() or ''
|
return hub and hub:get_active_servers_prompt() or ''
|
||||||
end,
|
end,
|
||||||
vendors = {
|
providers = {
|
||||||
|
['deepseek-r1-local'] = {
|
||||||
|
__inherited_from = 'ollama',
|
||||||
|
api_key_name = '',
|
||||||
|
endpoint = 'http://172.30.64.1:10000',
|
||||||
|
model = 'deepseek-r1:14b',
|
||||||
|
},
|
||||||
|
['gemma3-local'] = {
|
||||||
|
__inherited_from = 'ollama',
|
||||||
|
api_key_name = '',
|
||||||
|
endpoint = 'http://172.30.64.1:10000',
|
||||||
|
model = 'gemma3:12b',
|
||||||
|
},
|
||||||
|
['qwen3-local'] = {
|
||||||
|
__inherited_from = 'ollama',
|
||||||
|
api_key_name = '',
|
||||||
|
endpoint = 'http://172.30.64.1:10000',
|
||||||
|
model = 'qwen3:14b',
|
||||||
|
},
|
||||||
['gemini-pro'] = {
|
['gemini-pro'] = {
|
||||||
__inherited_from = 'gemini',
|
__inherited_from = 'gemini',
|
||||||
model = 'gemini-2.5-pro-preview-05-06',
|
model = 'gemini-2.5-pro',
|
||||||
timeout = 600000,
|
timeout = 600000,
|
||||||
max_tokens = 40960,
|
extra_request_body = { max_tokens = 40960 },
|
||||||
},
|
},
|
||||||
['gemini-flash'] = {
|
['gemini-flash'] = {
|
||||||
__inherited_from = 'gemini',
|
__inherited_from = 'gemini',
|
||||||
model = 'gemini-2.0-flash',
|
model = 'gemini-2.5-flash',
|
||||||
timeout = 600000,
|
timeout = 600000,
|
||||||
max_tokens = 20480,
|
extra_request_body = { max_tokens = 20480 },
|
||||||
},
|
},
|
||||||
['claude-sonnet-4'] = {
|
['claude-sonnet-4'] = {
|
||||||
__inherited_from = 'claude',
|
__inherited_from = 'claude',
|
||||||
model = 'claude-sonnet-4-20250514',
|
model = 'claude-sonnet-4-20250514',
|
||||||
timeout = 600000,
|
timeout = 600000,
|
||||||
max_tokens = 20480,
|
extra_request_body = { max_tokens = 20480 },
|
||||||
},
|
},
|
||||||
groq = {
|
groq = {
|
||||||
__inherited_from = 'openai',
|
__inherited_from = 'openai',
|
||||||
@@ -473,4 +460,51 @@ return {
|
|||||||
trailing_stiffness = 0.1,
|
trailing_stiffness = 0.1,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'greggh/claude-code.nvim',
|
||||||
|
dependencies = {
|
||||||
|
'nvim-lua/plenary.nvim',
|
||||||
|
},
|
||||||
|
opts = {
|
||||||
|
window = {
|
||||||
|
split_ratio = 0.5,
|
||||||
|
position = 'botright',
|
||||||
|
enter_insert = true,
|
||||||
|
hide_numbers = true,
|
||||||
|
hide_signcolumn = true,
|
||||||
|
},
|
||||||
|
refresh = {
|
||||||
|
enable = true,
|
||||||
|
updatetime = 100,
|
||||||
|
timer_interval = 1000,
|
||||||
|
show_notifications = true,
|
||||||
|
},
|
||||||
|
git = {
|
||||||
|
use_git_root = true,
|
||||||
|
},
|
||||||
|
shell = {
|
||||||
|
separator = '&&',
|
||||||
|
pushd_cmd = 'pushd',
|
||||||
|
popd_cmd = 'popd',
|
||||||
|
},
|
||||||
|
command = 'claude',
|
||||||
|
command_variants = {
|
||||||
|
continue = '--continue', -- Resume the most recent conversation
|
||||||
|
resume = '--resume', -- Display an interactive conversation picker
|
||||||
|
verbose = '--verbose', -- Enable verbose logging with full turn-by-turn output
|
||||||
|
},
|
||||||
|
keymaps = {
|
||||||
|
toggle = {
|
||||||
|
normal = '<C-_>',
|
||||||
|
terminal = '<C-_>',
|
||||||
|
variants = {
|
||||||
|
continue = '<leader>cC',
|
||||||
|
verbose = '<leader>cV',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
window_navigation = true,
|
||||||
|
scrolling = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
@@ -35,7 +35,7 @@ services:
|
|||||||
- 'home_supermaven:/home/coder/.supermaven'
|
- 'home_supermaven:/home/coder/.supermaven'
|
||||||
|
|
||||||
chroma:
|
chroma:
|
||||||
image: 'ghcr.io/chroma-core/chroma:1.0.10'
|
image: 'ghcr.io/chroma-core/chroma:1.0.15'
|
||||||
init: true
|
init: true
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
hostname: chroma
|
hostname: chroma
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
diff --git a/init.lua b/init.lua
|
diff --git a/init.lua b/init.lua
|
||||||
index b98ffc6..8013e25 100644
|
index b98ffc6..d9e223a 100644
|
||||||
--- a/init.lua
|
--- a/init.lua
|
||||||
+++ b/init.lua
|
+++ b/init.lua
|
||||||
@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
|
@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
|
||||||
@@ -60,6 +60,15 @@ index b98ffc6..8013e25 100644
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -659,7 +668,7 @@ require('lazy').setup({
|
||||||
|
-- By default, Neovim doesn't support everything that is in the LSP specification.
|
||||||
|
-- When you add blink.cmp, luasnip, etc. Neovim now has *more* capabilities.
|
||||||
|
-- So, we create new capabilities with blink.cmp, and then broadcast that to the servers.
|
||||||
|
- local capabilities = require('blink.cmp').get_lsp_capabilities()
|
||||||
|
+ -- local capabilities = require('blink.cmp').get_lsp_capabilities()
|
||||||
|
|
||||||
|
-- Enable the following language servers
|
||||||
|
-- Feel free to add/remove any LSPs that you want here. They will automatically be installed.
|
||||||
@@ -684,6 +693,28 @@ require('lazy').setup({
|
@@ -684,6 +693,28 @@ require('lazy').setup({
|
||||||
-- ts_ls = {},
|
-- ts_ls = {},
|
||||||
--
|
--
|
||||||
@@ -89,7 +98,7 @@ index b98ffc6..8013e25 100644
|
|||||||
lua_ls = {
|
lua_ls = {
|
||||||
-- cmd = { ... },
|
-- cmd = { ... },
|
||||||
-- filetypes = { ... },
|
-- filetypes = { ... },
|
||||||
@@ -698,6 +729,32 @@ require('lazy').setup({
|
@@ -698,6 +729,38 @@ require('lazy').setup({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -119,44 +128,67 @@ index b98ffc6..8013e25 100644
|
|||||||
+ },
|
+ },
|
||||||
+ },
|
+ },
|
||||||
+ },
|
+ },
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ ---@type MasonLspconfigSettings
|
||||||
|
+ ---@diagnostic disable-next-line: missing-fields
|
||||||
|
+ require('mason-lspconfig').setup {
|
||||||
|
+ automatic_enable = vim.tbl_keys(servers or {}),
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Ensure the servers and tools above are installed
|
-- Ensure the servers and tools above are installed
|
||||||
@@ -729,6 +786,33 @@ require('lazy').setup({
|
@@ -719,20 +782,36 @@ require('lazy').setup({
|
||||||
-- by the server configuration above. Useful when disabling
|
})
|
||||||
-- certain features of an LSP (for example, turning off formatting for ts_ls)
|
require('mason-tool-installer').setup { ensure_installed = ensure_installed }
|
||||||
server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {})
|
|
||||||
+ -- overwrite elixirls for older versions of elixir
|
- require('mason-lspconfig').setup {
|
||||||
+ -- * elixir 1.11 use version 0.12.0
|
- ensure_installed = {}, -- explicitly set to an empty table (Kickstart populates installs via mason-tool-installer)
|
||||||
+ -- * elixir 1.12 use verions 0.14.6
|
- automatic_installation = false,
|
||||||
+ if server_name == 'elixirls' then
|
- handlers = {
|
||||||
+ local version = vim.fn.system('mise current elixir') or ''
|
- function(server_name)
|
||||||
+ local elixir_servers = {
|
- local server = servers[server_name] or {}
|
||||||
+ { version = '^1.11', path = '/elixir-ls/release/v0.12.0/language_server.sh' },
|
- -- This handles overriding only values explicitly passed
|
||||||
+ { version = '^1.12', path = '/elixir-ls/release/v0.14.6/language_server.sh' },
|
- -- by the server configuration above. Useful when disabling
|
||||||
+ }
|
- -- certain features of an LSP (for example, turning off formatting for ts_ls)
|
||||||
+ for _, ex_server in ipairs(elixir_servers) do
|
- server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {})
|
||||||
+ if string.match(version, ex_server.version) == nil then goto continue end
|
- require('lspconfig')[server_name].setup(server)
|
||||||
+ server = vim.tbl_extend('keep', server, { cmd = { vim.fn.expand('$LOCAL_SRC_HOME') .. ex_server.path } })
|
- end,
|
||||||
+ ::continue::
|
- },
|
||||||
+ end
|
- }
|
||||||
+ elseif server_name == 'pyright' then
|
+ local extend_server_config = function (server_name)
|
||||||
+ local python_paths = {
|
+ local config = {}
|
||||||
+ { name = 'poetry', cmd = { 'poetry', 'env', 'info', '--executable' }},
|
+
|
||||||
+ { name = 'system', cmd = { 'which', 'python' }},
|
+ if server_name == 'pyright' then
|
||||||
+ }
|
+ -- overwrite python path for pyright according to the virtualenv manager, be it poetry or system.
|
||||||
+ for _, py_server in ipairs(python_paths) do
|
+ local python_paths = {
|
||||||
+ local cmd = vim.system(py_server.cmd, { text = true }):wait()
|
+ { name = 'system', cmd = { 'which', 'python' }},
|
||||||
+ if (cmd.code > 0) then goto continue end
|
+ { name = 'poetry', cmd = { 'poetry', 'env', 'info', '--executable' }},
|
||||||
+ local python_path = string.gsub(cmd.stdout, '\n', '')
|
+ }
|
||||||
+ server = vim.tbl_extend('keep', server, { settings = { python = { pythonPath = python_path } } })
|
+ for _, py_server in ipairs(python_paths) do
|
||||||
+ ::continue::
|
+ local cmd = vim.system(py_server.cmd, { text = true }):wait()
|
||||||
+ end
|
+ if (cmd.code > 0) then goto continue end
|
||||||
+ end
|
+ local python_path = string.gsub(cmd.stdout, '\n', '')
|
||||||
require('lspconfig')[server_name].setup(server)
|
+ config = { settings = { python = { pythonPath = python_path } } }
|
||||||
end,
|
+ ::continue::
|
||||||
},
|
+ end
|
||||||
@@ -809,6 +893,9 @@ require('lazy').setup({
|
+ end
|
||||||
|
+
|
||||||
|
+ return config
|
||||||
|
+ end
|
||||||
|
+
|
||||||
|
+ -- Installed LSPs are configured and enabled automatically with mason-lspconfig
|
||||||
|
+ -- The loop below is for overriding the default configuration of LSPs with the ones in the servers table
|
||||||
|
+ for server_name, config in pairs(servers) do
|
||||||
|
+ config = vim.tbl_extend('keep', config, extend_server_config(server_name))
|
||||||
|
+ vim.lsp.config(server_name, config)
|
||||||
|
+ end
|
||||||
|
+
|
||||||
|
+ -- NOTE: Some servers may require an old setup until they are updated. For the full list refer here: https://github.com/neovim/nvim-lspconfig/issues/3705
|
||||||
|
+ -- These servers will have to be manually set up with require("lspconfig").server_name.setup{}
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
|
@@ -809,6 +888,9 @@ require('lazy').setup({
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
'folke/lazydev.nvim',
|
'folke/lazydev.nvim',
|
||||||
@@ -166,7 +198,7 @@ index b98ffc6..8013e25 100644
|
|||||||
},
|
},
|
||||||
--- @module 'blink.cmp'
|
--- @module 'blink.cmp'
|
||||||
--- @type blink.cmp.Config
|
--- @type blink.cmp.Config
|
||||||
@@ -854,9 +941,19 @@ require('lazy').setup({
|
@@ -854,9 +936,19 @@ require('lazy').setup({
|
||||||
},
|
},
|
||||||
|
|
||||||
sources = {
|
sources = {
|
||||||
@@ -187,7 +219,7 @@ index b98ffc6..8013e25 100644
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -882,19 +979,39 @@ require('lazy').setup({
|
@@ -882,19 +974,39 @@ require('lazy').setup({
|
||||||
--
|
--
|
||||||
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
||||||
'folke/tokyonight.nvim',
|
'folke/tokyonight.nvim',
|
||||||
@@ -233,7 +265,7 @@ index b98ffc6..8013e25 100644
|
|||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -944,7 +1061,39 @@ require('lazy').setup({
|
@@ -944,7 +1056,39 @@ require('lazy').setup({
|
||||||
main = 'nvim-treesitter.configs', -- Sets main module to use for opts
|
main = 'nvim-treesitter.configs', -- Sets main module to use for opts
|
||||||
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
|
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
|
||||||
opts = {
|
opts = {
|
||||||
@@ -274,7 +306,7 @@ index b98ffc6..8013e25 100644
|
|||||||
-- Autoinstall languages that are not installed
|
-- Autoinstall languages that are not installed
|
||||||
auto_install = true,
|
auto_install = true,
|
||||||
highlight = {
|
highlight = {
|
||||||
@@ -974,17 +1123,17 @@ require('lazy').setup({
|
@@ -974,17 +1118,17 @@ require('lazy').setup({
|
||||||
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
|
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
|
||||||
--
|
--
|
||||||
-- require 'kickstart.plugins.debug',
|
-- require 'kickstart.plugins.debug',
|
||||||
|
@@ -1,14 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# NOTE: (jpd) setup elixir-ls for older versions of elixir
|
|
||||||
if [ ! -d ${LOCAL_SRC_HOME}/elixir-ls/release ]; then
|
|
||||||
echo "setup elixir ls version 0.12.0"
|
|
||||||
/usr/local/bin/elixir-ls-setup v0.12.0
|
|
||||||
echo "setup elixir ls version 0.14.6"
|
|
||||||
/usr/local/bin/elixir-ls-setup v0.14.6
|
|
||||||
fi
|
|
||||||
|
|
||||||
# NOTE: (jpd) create auto-completion
|
# NOTE: (jpd) create auto-completion
|
||||||
commands=(
|
commands=(
|
||||||
"ctlptl"
|
"ctlptl"
|
||||||
|
@@ -1,38 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
function setup() {
|
|
||||||
local elixir_ls_home=${LOCAL_SRC_HOME}/elixir-ls
|
|
||||||
local elixir_ls_release=${elixir_ls_home}/release
|
|
||||||
echo "elixir-ls repo"
|
|
||||||
cd ${elixir_ls_home}
|
|
||||||
echo "checkout versions ${1}"
|
|
||||||
git checkout tags/${1}
|
|
||||||
echo "set erlang/elixir versions"
|
|
||||||
cp .release-tool-versions .tool-versions
|
|
||||||
if [[ ! -z "$2" ]]; then
|
|
||||||
echo "override erlang to ${2}"
|
|
||||||
sed -i "s/erlang .*/erlang ${2}/g" .tool-versions
|
|
||||||
fi
|
|
||||||
if [[ ! -z "$3" ]]; then
|
|
||||||
echo "override elixir to ${3}"
|
|
||||||
sed -i "s/elixir .*/elixir ${3}/g" .tool-versions
|
|
||||||
fi
|
|
||||||
local current_erlang=$(mise current erlang)
|
|
||||||
local current_elixir=$(mise current elixir)
|
|
||||||
echo "using erlang ${current_erlang} / elixir ${current_elixir}"
|
|
||||||
echo "install erlang/elixir runtimes"
|
|
||||||
KERL_CONFIGURE_OPTIONS="-with-ssl=${HOME}/.local/lib/ssl" mise install
|
|
||||||
echo "install elixir-ls deps"
|
|
||||||
mise exec erlang@${current_erlang} elixir@${current_elixir} --command "mix do local.rebar --force, local.hex --force, deps.get, deps.compile"
|
|
||||||
echo "compile and release elixir-ls"
|
|
||||||
mise exec erlang@${current_erlang} elixir@${current_elixir} --command "MIX_ENV=prod mix compile"
|
|
||||||
mise exec erlang@${current_erlang} elixir@${current_elixir} --command "MIX_ENV=prod mix elixir_ls.release -o ${elixir_ls_release}/${1}"
|
|
||||||
echo "remove local .tool-versions"
|
|
||||||
cp .tool-versions ${elixir_ls_release}/${1}
|
|
||||||
rm .tool-versions
|
|
||||||
mise exec erlang@${current_erlang} elixir@${current_elixir} --command "mix do deps.clean --all, clean"
|
|
||||||
git checkout master
|
|
||||||
}
|
|
||||||
|
|
||||||
setup $1 $2 $3
|
|
Reference in New Issue
Block a user