From 09efee224e95e077396338bc6954d6c733d132db Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Wed, 20 Mar 2024 21:25:33 -0400 Subject: [PATCH 1/4] migrate from fasd to zoxide --- dot_zshrc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dot_zshrc b/dot_zshrc index 2591435..90bdfc3 100644 --- a/dot_zshrc +++ b/dot_zshrc @@ -173,11 +173,11 @@ ZVM_LINE_INIT_MODE=$ZVM_MODE_INSERT chezmoi completion zsh | source /dev/stdin #Trying out fasd over z. There's nothing wrong with z, it just looks like fasd might add some more completion and stuff that might be useful -eval "$(fasd --init auto)" +#eval "$(fasd --init auto)" #Attempting to try zplug source ~/.zplug/init.zsh -zplug "wookayin/fzf-fasd" +#zplug "wookayin/fzf-fasd" zplug "plugins/git", from:oh-my-zsh autoload -U compinit compinit -i @@ -190,4 +190,6 @@ export PATH="/home/kellya/.deta/bin:$PATH" export PATH="/home/kellya/local/share/JetBrains/Toolbox/scripts:$PATH" #eval $(thefuck --alias) +eval "$(zoxide init zsh)" eval "$(op completion zsh)"; compdef _op op +. "/home/kellya/.acme.sh/acme.sh.env" From 3ff1bf7c134c221d89649411ef90455baf25b6a2 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Wed, 20 Mar 2024 21:29:16 -0400 Subject: [PATCH 2/4] add logseq handler --- dot_taskopenrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dot_taskopenrc b/dot_taskopenrc index 6223218..d961ca8 100644 --- a/dot_taskopenrc +++ b/dot_taskopenrc @@ -27,3 +27,5 @@ thunderlink.regex="(cb)?thunderlink:.*" thunderlink.command="/home/kellya/bin/cb_thunderlink/cb_thunderlink $FILE" joplin.regex="joplin:.*" joplin.command="/home/kellya/.joplin/Joplin.AppImage $FILE" +logseq.regex="logseq:.*" +logseq.command="logseq $FILE" From d960483401200abd7500e635baa0e8c31c5d3610 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Wed, 20 Mar 2024 21:30:17 -0400 Subject: [PATCH 3/4] add papercolor theme --- dot_config/kitty/kitty.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/dot_config/kitty/kitty.conf b/dot_config/kitty/kitty.conf index 92aa65d..4f56b3d 100644 --- a/dot_config/kitty/kitty.conf +++ b/dot_config/kitty/kitty.conf @@ -1337,3 +1337,4 @@ map kitty_mod+delete clear_terminal reset active #: }}} # }}} +include papercolor-kitty/papercolor-dark.conf From 06652b715cc63727702aae05c9eba050018e2781 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Wed, 20 Mar 2024 21:31:11 -0400 Subject: [PATCH 4/4] change theme to tokyonight --- dot_config/nvim/init.vim | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dot_config/nvim/init.vim b/dot_config/nvim/init.vim index d261663..62a8a8c 100644 --- a/dot_config/nvim/init.vim +++ b/dot_config/nvim/init.vim @@ -19,6 +19,10 @@ call plug#begin(g:plugged_home) Plug 'Chiel92/vim-autoformat' " Theme Plug 'pineapplegiant/spaceduck', { 'branch': 'main' } + Plug 'folke/tokyonight.nvim' + Plug 'EdenEast/nightfox.nvim' + Plug 'bluz71/vim-moonfly-colors' + Plug 'NLKNguyen/papercolor-theme' " Python Plugins Plug 'Valloric/YouCompleteMe' Plug 'vim-syntastic/syntastic' @@ -77,7 +81,8 @@ if exists('+termguicolors') set termguicolors endif -colorscheme spaceduck +" colorscheme spaceduck +colorscheme tokyonight-night " set the number style to hybrid set number relativenumber