From fbb093c9c4e8496a1349bf38dd9495a5bdb073b5 Mon Sep 17 00:00:00 2001 From: Christian Nieves Date: Thu, 4 Jan 2024 03:21:21 -0600 Subject: [PATCH] p --- config/.config/.gitignore | 1 + vim/.vim/lua/plugins/.gitignore | 1 + vim/.vim/lua/plugins/base.lua | 1 + vim/.vim/lua/plugins/codeium.lua | 2 +- vim/.vim/lua/plugins/lsp.lua | 6 +++--- zsh/.zshrc | 1 + 6 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 config/.config/.gitignore create mode 100644 vim/.vim/lua/plugins/.gitignore 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"