Skip to content

Commit

Permalink
chore: bump kubectl
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioAntunes committed Feb 5, 2024
1 parent cf813db commit bac9a65
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions fish/config.fish
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ set -gx FZF_DEFAULT_COMMAND 'ag --hidden --ignore .git -g ""'
set paths_to_add $HOME/platform-tools $HOME/.krew/bin $HOME/google-cloud-sdk/bin
# stupid gcloud
set -gx CLOUDSDK_PYTHON /usr/local/bin/python3.9
set -gx KUBE_EDITOR nvim

if type -q go
set -gx GOPATH (go env GOPATH)
Expand Down
2 changes: 1 addition & 1 deletion init.fish
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ make O_NERD=1
sudo make install
popd

curl -LO 'https://dl.k8s.io/release/v1.24.13/bin/'$os'/amd64/kubectl'
curl -LO 'https://dl.k8s.io/release/v1.26.13/bin/'$os'/amd64/kubectl'
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
kubectl completion fish >~/.config/fish/completions/kubectl.fish
Expand Down
4 changes: 4 additions & 0 deletions nvim/lua/fantunes/plugins/nvim-lsp/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ local on_attach = function(client, bufnr)
vim.diagnostic.disable()
end

if client.name == "tflint" then
vim.diagnostic.config({ signs = false })
end

if client.server_capabilities.documentHighlightProvider and client.name ~= "efm" then
vim.cmd([[
augroup lsp_document_highlight
Expand Down

0 comments on commit bac9a65

Please sign in to comment.