Skip to content

Commit

Permalink
update sessionizer paths
Browse files Browse the repository at this point in the history
  • Loading branch information
rahsheen committed Nov 6, 2022
1 parent b9ca1cc commit fc16a54
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .config/nvim/init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ nnoremap <leader>gpl :Dispatch! git pull<CR>
" Copy to system clipboard
vnoremap <leader>y "*y
nnoremap <leader>y "*<y
vnoremap <leader>yy "+y
" Move buffers
nmap sp :bprev<Return>
Expand Down
3 changes: 2 additions & 1 deletion .local/bin/tmux-sessionizer
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
if [[ $# -eq 1 ]]; then
selected=$1
else
selected=$(find ~/.config ~/Development/nurx ~/Development ~/Development/keeps-next ~/Development/keeps-frontend -mindepth 1 -maxdepth 1 -type d | fzf)
#selected=$(find ~/.config ~/Development/nurx ~/Development ~/Development/keeps-next ~/Development/keeps-frontend -mindepth 1 -maxdepth 1 -type d | fzf)
selected=$(find ~/.config ~/Development/**/* -mindepth 1 -maxdepth 1 -type d | fzf)
fi

if [[ -z $selected ]]; then
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nodejs 16.16.0
nodejs 16.18.1
kubectl 1.23.6
ruby 2.6.4

0 comments on commit fc16a54

Please sign in to comment.