diff --git a/config/.config/.gitignore b/config/.config/.gitignore new file mode 100644 index 0000000..9971667 --- /dev/null +++ b/config/.config/.gitignore @@ -0,0 +1 @@ +StardewValley diff --git a/vim/.vim/lua/plugins/.gitignore b/vim/.vim/lua/plugins/.gitignore new file mode 100644 index 0000000..aa82c24 --- /dev/null +++ b/vim/.vim/lua/plugins/.gitignore @@ -0,0 +1 @@ +gemini.lua diff --git a/vim/.vim/lua/plugins/base.lua b/vim/.vim/lua/plugins/base.lua index d5d0e75..beed3fa 100644 --- a/vim/.vim/lua/plugins/base.lua +++ b/vim/.vim/lua/plugins/base.lua @@ -2,6 +2,7 @@ local use_google = require("utils").use_google return { -- "sindrets/diffview.nvim", + { "johmsalas/text-case.nvim" }, { "nvim-lua/plenary.nvim", lazy = false }, { "nvim-tree/nvim-web-devicons", lazy = false }, { "squk/java-syntax.vim", ft = "java" }, diff --git a/vim/.vim/lua/plugins/codeium.lua b/vim/.vim/lua/plugins/codeium.lua index b68ac24..60cf6df 100644 --- a/vim/.vim/lua/plugins/codeium.lua +++ b/vim/.vim/lua/plugins/codeium.lua @@ -2,7 +2,7 @@ local use_google = require("utils").use_google return { { "Exafunction/codeium.nvim", - commit = "b1ff0d6c993e3d87a4362d2ccd6c660f7444599f", + -- commit = "b1ff0d6c993e3d87a4362d2ccd6c660f7444599f", event = "VeryLazy", -- event = "InsertEnter", cond = not use_google(), diff --git a/vim/.vim/lua/plugins/lsp.lua b/vim/.vim/lua/plugins/lsp.lua index 791c710..5ef44c2 100644 --- a/vim/.vim/lua/plugins/lsp.lua +++ b/vim/.vim/lua/plugins/lsp.lua @@ -69,9 +69,9 @@ return { -- Godot lspconfig.gdscript.setup({ - flags = { - debounce_text_changes = 2000, -- Wait 5 seconds before sending didChange - }, + -- flags = { + -- debounce_text_changes = 2000, -- Wait 5 seconds before sending didChange + -- }, }) vim.cmd([[autocmd FileType gdscript setlocal commentstring=#\ %s]]) vim.cmd([[autocmd FileType gdscript setlocal autoindent noexpandtab tabstop=4 shiftwidth=4]]) diff --git a/zsh/.zshrc b/zsh/.zshrc index edd9359..bf423b1 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -25,6 +25,7 @@ zplug "plugins/docker", from:oh-my-zsh; zplug "plugins/rsync", from:oh-my-zsh; zplug "plugins/safepaste", from:oh-my-zsh; +zplug "Tarrasch/zsh-autoenv" # Expects .autoenv.zsh or .autoenv_leave.zsh zplug "zsh-users/zsh-syntax-highlighting", defer:2 zplug "mafredri/zsh-async", from:"github", use:"async.zsh" zplug "zsh-users/zsh-autosuggestions"