Compare commits
13 Commits
2093045360
...
main
Author | SHA1 | Date | |
---|---|---|---|
c080502bfb | |||
b0bfb5cbf2 | |||
533282bfd9 | |||
a6fbbd5e65 | |||
53e6f75fc8 | |||
8cbdd5f18e | |||
8be3e065e5 | |||
5ec3b02116 | |||
2ac2c13a26 | |||
3dffced742 | |||
741e3e080f | |||
6ff1908742 | |||
1b34d5e2dc |
@@ -210,4 +210,3 @@ RUN git config --global user.email "${GIT_USER_EMAIL}" \
|
||||
&& git config --global includeIf."gitdir:/opt/work/".path ${XDG_CONFIG_HOME}/git/work
|
||||
|
||||
COPY ./scripts/docker-entrypoint.sh /usr/local/bin/docker-entrypoint
|
||||
COPY ./scripts/elixir-ls-setup.sh /usr/local/bin/elixir-ls-setup
|
||||
|
@@ -28,6 +28,20 @@
|
||||
"mcp-server-git"
|
||||
]
|
||||
},
|
||||
"github": {
|
||||
"command": "docker",
|
||||
"args": [
|
||||
"run",
|
||||
"-i",
|
||||
"--rm",
|
||||
"-e",
|
||||
"GITHUB_PERSONAL_ACCESS_TOKEN",
|
||||
"ghcr.io/github/github-mcp-server"
|
||||
],
|
||||
"env": {
|
||||
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GH_TOKEN}"
|
||||
}
|
||||
},
|
||||
"memory": {
|
||||
"command": "pnpm",
|
||||
"args": [
|
||||
@@ -35,6 +49,20 @@
|
||||
"@modelcontextprotocol/server-memory@latest"
|
||||
]
|
||||
},
|
||||
"memory-bank": {
|
||||
"command": "pnpm",
|
||||
"args": [
|
||||
"dlx",
|
||||
"@allpepper/memory-bank-mcp@latest"
|
||||
]
|
||||
},
|
||||
"sequential-thinking": {
|
||||
"command": "pnpm",
|
||||
"args": [
|
||||
"dlx",
|
||||
"@modelcontextprotocol/server-sequential-thinking@latest"
|
||||
]
|
||||
},
|
||||
"serena": {
|
||||
"command": "uvx",
|
||||
"arg": [
|
||||
@@ -52,4 +80,5 @@
|
||||
]
|
||||
}
|
||||
}
|
||||
"nativeMCPServers": []
|
||||
}
|
||||
|
@@ -3,20 +3,20 @@
|
||||
"aqua:FiloSottile/age" = "1.2.1"
|
||||
"aqua:ajeetdsouza/zoxide" = "0.9.8"
|
||||
"aqua:alexellis/k3sup" = "0.13.10"
|
||||
"aqua:astral-sh/uv" = "0.8.2"
|
||||
"aqua:aws/aws-cli" = "2.27.57"
|
||||
"aqua:astral-sh/uv" = "0.8.3"
|
||||
"aqua:aws/aws-cli" = "2.27.60"
|
||||
"aqua:bitwarden/clients" = "cli-v2025.5.0"
|
||||
"aqua:dagger/dagger" = "0.18.14"
|
||||
"aqua:derailed/k9s" = "0.50.9"
|
||||
"aqua:eksctl-io/eksctl" = "0.210.0"
|
||||
"aqua:eksctl-io/eksctl" = "0.211.0"
|
||||
"aqua:evilmartians/lefthook" = "1.12.2"
|
||||
"aqua:eza-community/eza" = "0.23.0"
|
||||
"aqua:github-cli" = "2.75.0"
|
||||
"aqua:go-task/task" = "3.44.0"
|
||||
"aqua:github-cli" = "2.76.1"
|
||||
"aqua:go-task/task" = "3.44.1"
|
||||
"aqua:hashicorp/terraform" = "1.12.2"
|
||||
"aqua:helm/helm" = "3.18.4"
|
||||
"aqua:jj-vcs/jj" = "0.31.0"
|
||||
"aqua:junegunn/fzf" = "0.64.0"
|
||||
"aqua:junegunn/fzf" = "0.65.0"
|
||||
"aqua:k3d-io/k3d" = "5.8.3"
|
||||
"aqua:kubernetes-sigs/kind" = "0.29.0"
|
||||
"aqua:kubernetes/kubectl" = "1.33.2"
|
||||
@@ -26,8 +26,8 @@
|
||||
"aqua:starship/starship" = "1.23.0"
|
||||
"aqua:tilt-dev/ctlptl" = "0.8.42"
|
||||
"aqua:tilt-dev/tilt" = "0.35.0"
|
||||
"npm:@anthropic-ai/claude-code" = "1.0.58"
|
||||
"npm:@google/gemini-cli" = "0.1.13"
|
||||
"npm:@anthropic-ai/claude-code" = "1.0.61"
|
||||
"npm:@google/gemini-cli" = "0.1.14"
|
||||
"pipx:aider-chat" = { version = "0.85.2", uvx_args = "--python 3.12.10 --with google-generativeai" }
|
||||
"pipx:httpie" = { version = "3.2.4", uvx_args = "--python 3.13.3" }
|
||||
"ubi:Samyak2/toipe" = "0.5.0"
|
||||
@@ -35,7 +35,7 @@
|
||||
"ubi:hlsxx/tukai" = "0.2.2"
|
||||
"ubi:jdx/usage" = "2.2.2"
|
||||
"ubi:max-niederman/ttyper" = "1.6.0"
|
||||
"ubi:sst/opencode" = "0.3.58"
|
||||
"ubi:sst/opencode" = "0.3.79"
|
||||
"ubi:wagoodman/dive" = "0.13.1"
|
||||
elixir = "1.18.4"
|
||||
erlang = "28.0.2"
|
||||
|
@@ -1,5 +1,5 @@
|
||||
diff --git a/init.lua b/init.lua
|
||||
index b98ffc6..d9e223a 100644
|
||||
index b98ffc6..22b2196 100644
|
||||
--- a/init.lua
|
||||
+++ b/init.lua
|
||||
@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
|
||||
@@ -69,7 +69,7 @@ index b98ffc6..d9e223a 100644
|
||||
|
||||
-- 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,39 @@ require('lazy').setup({
|
||||
-- ts_ls = {},
|
||||
--
|
||||
|
||||
@@ -82,7 +82,18 @@ index b98ffc6..d9e223a 100644
|
||||
+ mixEnv = 'test',
|
||||
+ },
|
||||
+ },
|
||||
+ gopls = {},
|
||||
+ gopls = {
|
||||
+ filetypes = { 'go', 'gomod', 'gowork', 'gotmpl' },
|
||||
+ settings = {
|
||||
+ gopls = {
|
||||
+ completeUnimported = true,
|
||||
+ usePlaceholders = true,
|
||||
+ analyses = {
|
||||
+ unusedparams = true,
|
||||
+ },
|
||||
+ },
|
||||
+ },
|
||||
+ },
|
||||
+ harper_ls = {},
|
||||
+ helm_ls = {},
|
||||
+ html = { filetypes = { 'html', 'twig', 'hbs' } },
|
||||
@@ -98,7 +109,7 @@ index b98ffc6..d9e223a 100644
|
||||
lua_ls = {
|
||||
-- cmd = { ... },
|
||||
-- filetypes = { ... },
|
||||
@@ -698,6 +729,38 @@ require('lazy').setup({
|
||||
@@ -698,6 +740,38 @@ require('lazy').setup({
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -118,7 +129,7 @@ index b98ffc6..d9e223a 100644
|
||||
+ ["https://json.schemastore.org/prettierrc.json"] = ".prettierrc.{yml,yaml}",
|
||||
+ ["https://json.schemastore.org/circleciconfig.json"] = ".circleci/config.{yml,yaml}",
|
||||
+ ["https://json.schemastore.org/dependabot-v2"] = ".github/dependabot.{yml,yaml}",
|
||||
+ ["https://raw.githubusercontent.com/OAI/OpenAPI-Specification/main/schemas/v3.1/schema.json"] = "*api*.{yml,yaml}",
|
||||
+ ["https://spec.openapis.org/oas/3.1/schema/2022-10-07"] = "*api*.{yml,yaml}",
|
||||
+ ["https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/ansible.json#/$defs/playbook"] = "*play*.{yml,yaml}",
|
||||
+ ["https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/ansible.json#/$defs/tasks"] = "roles/tasks/*.{yml,yaml}",
|
||||
+ ["https://raw.githubusercontent.com/argoproj/argo-workflows/master/api/jsonschema/schema.json"] = "*flow*.{yml,yaml}",
|
||||
@@ -137,7 +148,7 @@ index b98ffc6..d9e223a 100644
|
||||
}
|
||||
|
||||
-- Ensure the servers and tools above are installed
|
||||
@@ -719,20 +782,36 @@ require('lazy').setup({
|
||||
@@ -719,20 +793,36 @@ require('lazy').setup({
|
||||
})
|
||||
require('mason-tool-installer').setup { ensure_installed = ensure_installed }
|
||||
|
||||
@@ -188,7 +199,7 @@ index b98ffc6..d9e223a 100644
|
||||
end,
|
||||
},
|
||||
|
||||
@@ -809,6 +888,9 @@ require('lazy').setup({
|
||||
@@ -809,6 +899,9 @@ require('lazy').setup({
|
||||
opts = {},
|
||||
},
|
||||
'folke/lazydev.nvim',
|
||||
@@ -198,7 +209,7 @@ index b98ffc6..d9e223a 100644
|
||||
},
|
||||
--- @module 'blink.cmp'
|
||||
--- @type blink.cmp.Config
|
||||
@@ -854,9 +936,19 @@ require('lazy').setup({
|
||||
@@ -854,9 +947,19 @@ require('lazy').setup({
|
||||
},
|
||||
|
||||
sources = {
|
||||
@@ -219,7 +230,7 @@ index b98ffc6..d9e223a 100644
|
||||
},
|
||||
},
|
||||
|
||||
@@ -882,19 +974,39 @@ require('lazy').setup({
|
||||
@@ -882,19 +985,39 @@ require('lazy').setup({
|
||||
--
|
||||
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`.
|
||||
'folke/tokyonight.nvim',
|
||||
@@ -251,21 +262,21 @@ index b98ffc6..d9e223a 100644
|
||||
+ -- For monoglow the following variants area available:
|
||||
+ -- 'monoglow-z', 'monoglow-lack', or 'monoglow-void'.
|
||||
+ -- gruvbox-material configuration based on https://github.com/gonstoll/dotfiles/blob/2d7ec07bd475c73e7ba1a48b27a2a85315bfd2d1/.config/nvim/lua/plugins/colorscheme/gruvbox.lua#L5-L13
|
||||
+ -- vim.g.gruvbox_material_better_performance = 1
|
||||
+ -- vim.g.gruvbox_material_foreground = 'material'
|
||||
+ -- vim.g.gruvbox_material_background = 'medium'
|
||||
+ -- vim.g.gruvbox_material_ui_contrast = 'low'
|
||||
+ -- vim.g.gruvbox_material_float_style = 'dim'
|
||||
+ -- vim.g.gruvbox_material_enable_italic = 0
|
||||
+ -- vim.g.gruvbox_material_disable_italic_comment = 1
|
||||
+ -- vim.g.gruvbox_material_cursor = 'red'
|
||||
+ -- vim.g.gruvbox_material_disable_terminal_colors = 1
|
||||
+ -- vim.cmd.colorscheme 'gruvbox-material'
|
||||
+ vim.cmd.colorscheme 'lackluster'
|
||||
+ vim.g.gruvbox_material_better_performance = 1
|
||||
+ vim.g.gruvbox_material_foreground = 'material'
|
||||
+ vim.g.gruvbox_material_background = 'medium'
|
||||
+ vim.g.gruvbox_material_ui_contrast = 'low'
|
||||
+ vim.g.gruvbox_material_float_style = 'dim'
|
||||
+ vim.g.gruvbox_material_enable_italic = 0
|
||||
+ vim.g.gruvbox_material_disable_italic_comment = 1
|
||||
+ vim.g.gruvbox_material_cursor = 'red'
|
||||
+ vim.g.gruvbox_material_disable_terminal_colors = 1
|
||||
+ vim.cmd.colorscheme 'gruvbox-material'
|
||||
+ -- vim.cmd.colorscheme 'lackluster'
|
||||
end,
|
||||
},
|
||||
|
||||
@@ -944,7 +1056,39 @@ require('lazy').setup({
|
||||
@@ -944,7 +1067,39 @@ require('lazy').setup({
|
||||
main = 'nvim-treesitter.configs', -- Sets main module to use for opts
|
||||
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
|
||||
opts = {
|
||||
@@ -306,7 +317,7 @@ index b98ffc6..d9e223a 100644
|
||||
-- Autoinstall languages that are not installed
|
||||
auto_install = true,
|
||||
highlight = {
|
||||
@@ -974,17 +1118,17 @@ require('lazy').setup({
|
||||
@@ -974,17 +1129,17 @@ require('lazy').setup({
|
||||
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
|
||||
--
|
||||
-- require 'kickstart.plugins.debug',
|
||||
|
Reference in New Issue
Block a user