diff --git a/config/.config/nvim/lazy-lock.json b/config/.config/nvim/lazy-lock.json index eed6eea..57d2f1e 100644 --- a/config/.config/nvim/lazy-lock.json +++ b/config/.config/nvim/lazy-lock.json @@ -1,3 +1,3 @@ { - "lazy.nvim": { "branch": "main", "commit": "d8f26efd456190241afd1b0f5235fe6fdba13d4a" } + "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" } } diff --git a/vim/.vim/lua/plugins/blink.lua b/vim/.vim/lua/plugins/blink.lua index 2504320..87dd926 100644 --- a/vim/.vim/lua/plugins/blink.lua +++ b/vim/.vim/lua/plugins/blink.lua @@ -20,7 +20,6 @@ return { lazy = false, -- lazy loading handled internally cond = flags.blink, dependencies = { - "Exafunction/codeium.nvim", "chrisgrieser/cmp-nerdfont", "hrsh7th/cmp-nvim-lsp", "mikavilpas/blink-ripgrep.nvim", diff --git a/vim/.vim/lua/plugins/cmp.lua b/vim/.vim/lua/plugins/cmp.lua index 03ddbbe..4cf4d2a 100644 --- a/vim/.vim/lua/plugins/cmp.lua +++ b/vim/.vim/lua/plugins/cmp.lua @@ -7,7 +7,6 @@ return { event = { "InsertEnter", "CmdlineEnter" }, cond = not flags.blink, dependencies = { - "Exafunction/codeium.nvim", "FelipeLema/cmp-async-path", "amarakon/nvim-cmp-buffer-lines", "chrisgrieser/cmp-nerdfont", @@ -39,8 +38,6 @@ return { if use_google() then table.insert(conditionalSources, { name = "nvim_ciderlsp", priority = 8 }) table.insert(conditionalSources, { name = "buganizer", option = { notifications_enabled = true } }) - else - table.insert(conditionalSources, { name = "codeium", priority = 8 }) end local lspkind = require("lspkind") @@ -117,7 +114,6 @@ return { async_path = " path", buffer = " Buf", cmdline = " cmd", - codeium = "󰚩 Codeium", crates = " rust", luasnip = " snip", buganizer = " Buganizer", diff --git a/vim/.vim/lua/utils.lua b/vim/.vim/lua/utils.lua index 77e66e2..1b76f2c 100644 --- a/vim/.vim/lua/utils.lua +++ b/vim/.vim/lua/utils.lua @@ -25,7 +25,7 @@ end function M.use_google() if M.use_google_cache == nil then - M.use_google_cache = M.file_exists(os.getenv("HOME") .. "/use_google") + M.use_google_cache = M.file_exists(vim.env.HOME .. "/use_google") end return M.use_google_cache end diff --git a/zsh/.aliases.sh b/zsh/.aliases.sh index e5b7cd3..a9070a8 100644 --- a/zsh/.aliases.sh +++ b/zsh/.aliases.sh @@ -1,7 +1,7 @@ export ABBR_QUIET=1 alias grep='grep --colour' # abbr cat='bat' -alias ls='exa' +# alias ls='exa' alias tmux='tmux -2' alias ..="cd .."