feat: upgrade runtimes/utilities + nvim config + docker (#54)

Upgrade `docker` and plugins:

* `docker` from 24.0.7 to 27.1.1
* `compose` from 2.23.3 to 2.29.1
* `buildx` from 0.13.1 to 0.16.2

Upgrade `mise` utilites:

* `awscli` from 2.15.49 to 2.17.31
* `bitwarden` from 2024.4.1 to 2024.7.2
* `dagger` from 0.11.4 to 0.12.5
* `eksctl` from 0.180.0 to 0.188.0
* `elixir` from 1.17.0-otp-27 to 1.17.2-otp-27
* `erlang` from 27.0 to 27.0.1
* `eza` from 0.18.15 to 0.19.0
* `fzf` from 0.52.1 to 0.53.0
* `go` from 1.22.3 to 1.23.0
* `helm` from 3.14.4 to 3.15.4
* `k3d` from 5.6.3 to 5.7.3
* `k3sup` from 0.13.5 to 0.13.7
* `k9s` from 0.32.4 to 0.32.5
* `kind` from 0.22.0 to 0.23.0
* `kubectl` from 1.300 to 1.31.0
* `kubie` from 0.23.0 to 0.23.1
* `lefthook` from 1.6.11 to 1.7.13
* `node` from 22.1.0 to 22.6.0
* `python` from 3.12.3 to 3.12.5
* `r` from 4.4.0 to 4.4.1
* `rust` from 1.78.0 to 1.80.1
* `starship` from 1.18.2 to 1.20.1
* `task` from 3.37.2 to 3.38.0
* `terraform` from 1.8.3 to 1.9.4
* `tilt` from 0.33.13 to 0.33.19
* `usql` from 0.19.1 to 0.19.3
* `yarn` from 1.22.19 to 1.22.22

Upgrade `neovim` config to latest commit.

Reviewed-on: #54
Co-authored-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
Co-committed-by: Joao P Dubas <joao.dubas+gitea@gmail.com>
This commit is contained in:
2024-08-16 14:44:03 +00:00
committed by João Paulo Dubas
parent abe2a91b0a
commit 0f408f2c53
4 changed files with 110 additions and 107 deletions

View File

@@ -1,5 +1,5 @@
diff --git a/init.lua b/init.lua
index 88658ef..b2e4e40 100644
index 220d304..62a9702 100644
--- a/init.lua
+++ b/init.lua
@@ -91,7 +91,7 @@ vim.g.mapleader = ' '
@@ -24,7 +24,7 @@ index 88658ef..b2e4e40 100644
-- Don't show the mode, since it's already in the status line
vim.opt.showmode = false
@@ -154,6 +154,14 @@ vim.opt.cursorline = true
@@ -157,6 +157,14 @@ vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 10
@@ -39,7 +39,7 @@ index 88658ef..b2e4e40 100644
-- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()`
@@ -578,6 +586,28 @@ require('lazy').setup({
@@ -582,6 +590,28 @@ require('lazy').setup({
-- tsserver = {},
--
@@ -68,7 +68,7 @@ index 88658ef..b2e4e40 100644
lua_ls = {
-- cmd = {...},
-- filetypes = { ...},
@@ -592,6 +622,33 @@ require('lazy').setup({
@@ -596,6 +626,33 @@ require('lazy').setup({
},
},
},
@@ -102,7 +102,7 @@ index 88658ef..b2e4e40 100644
}
-- Ensure the servers and tools above are installed
@@ -618,6 +675,33 @@ require('lazy').setup({
@@ -622,6 +679,33 @@ require('lazy').setup({
-- by the server configuration above. Useful when disabling
-- certain features of an LSP (for example, turning off formatting for tsserver)
server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {})
@@ -136,11 +136,11 @@ index 88658ef..b2e4e40 100644
require('lspconfig')[server_name].setup(server)
end,
},
@@ -835,7 +919,38 @@ require('lazy').setup({
@@ -844,7 +928,39 @@ require('lazy').setup({
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
opts = {
- ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'vim', 'vimdoc' },
- ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' },
+ ensure_installed = {
+ 'bash',
+ 'c',
@@ -163,6 +163,7 @@ index 88658ef..b2e4e40 100644
+ 'markdown',
+ 'markdown_inline',
+ 'python',
+ 'query',
+ 'sql',
+ 'templ',
+ 'terraform',
@@ -176,7 +177,7 @@ index 88658ef..b2e4e40 100644
-- Autoinstall languages that are not installed
auto_install = true,
highlight = {
@@ -874,18 +989,18 @@ require('lazy').setup({
@@ -881,18 +997,18 @@ require('lazy').setup({
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
--
-- require 'kickstart.plugins.debug',