From: Alexander Goussas Date: Sun, 18 May 2025 21:12:01 +0000 (-0500) Subject: nvim: update colorscheme to unokai X-Git-Url: http://git.frustrated-labs.net/?a=commitdiff_plain;h=1bc89a7bc9249348c15820eaae1beeb5ea071e2e;p=dotfiles.git nvim: update colorscheme to unokai --- diff --git a/nvim/.config/nvim/init.lua b/nvim/.config/nvim/init.lua index c5f4286..aa47455 100644 --- a/nvim/.config/nvim/init.lua +++ b/nvim/.config/nvim/init.lua @@ -16,6 +16,7 @@ vim.o.expandtab = true -- Statusline vim.o.laststatus = 0 vim.o.termguicolors = true +vim.cmd('colorscheme unokai') -- Netrw vim.g.loaded_netrw = 1 @@ -75,12 +76,6 @@ require("lazy").setup({ }) end }, - { - 'lunacookies/vim-colors-xcode', - config = function() - vim.cmd [[colorscheme xcodedarkhc]] - end - }, { 'nvim-treesitter/nvim-treesitter', dependencies = { diff --git a/zsh/.zshrc b/zsh/.zshrc index 569bb96..d86295f 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -26,3 +26,9 @@ export NVM_DIR="$HOME/.nvm" export ANDROID_HOME="$HOME"/Library/Android/sdk export PATH=$ANDROID_HOME/platform-tools:$PATH export PATH=$ANDROID_HOME/tools:$PATH + +# The next line updates PATH for the Google Cloud SDK. +if [ -f '/Users/aloussase/Downloads/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/aloussase/Downloads/google-cloud-sdk/path.zsh.inc'; fi + +# The next line enables shell command completion for gcloud. +if [ -f '/Users/aloussase/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/aloussase/Downloads/google-cloud-sdk/completion.zsh.inc'; fi