From 6e28cdcfeed22dc22aa0a65135a4f64b74ce833b Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 13 Dec 2023 16:06:20 +0000 Subject: A better binding for FZF :Files --- vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index 95a8c2d..4e22c38 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -36,7 +36,7 @@ nnoremap ni :e $NOTES_DIR/index.md:cd $NOTES_DIR " clear search highlights nnoremap :noh:call clearmatches() nnoremap :FZF! -nnoremap t :Files +nnoremap p :Files nnoremap o :Tags nnoremap h :History nnoremap 0 :Files -- cgit v1.2.3 From dc7512aa855a068e13c3fa6bff1fbc6fe1ece9e6 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 13 Dec 2023 16:06:39 +0000 Subject: Adds Fern for vim --- vim/vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/vimrc b/vim/vimrc index 4e22c38..827bce3 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -129,6 +129,7 @@ command! W w " Plugins {{{ call plug#begin() "Plug 'vim-scripts/AutoComplPop' +Plug 'lambdalisue/fern.vim', Plug 'tpope/vim-rails', Plug 'vim-ruby/vim-ruby', Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } -- cgit v1.2.3 From 932b8cf0e9e3e8318c04cc13d518d32bff7b0928 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 13 Dec 2023 16:07:03 +0000 Subject: Back to a bareable colourscheme --- vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index 827bce3..c6fec1f 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -315,7 +315,7 @@ let g:gruvbox_improved_warnings = 1 let g:gruvbox_invert_indent_guides = 1 let g:gruvbox_invert_signs = 0 "colorscheme evening -"colorscheme sitruuna +colorscheme sitruuna " }}} " GPG files {{{ " from https://vim.fandom.com/wiki/Edit_gpg_encrypted_files -- cgit v1.2.3 From 8852f0fc025920aed254523b018bb340f87cc05e Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 13 Dec 2023 16:07:29 +0000 Subject: Removes beets thing on start up --- bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bashrc b/bashrc index a973a69..0a85dd3 100644 --- a/bashrc +++ b/bashrc @@ -37,7 +37,7 @@ source $HOME/Documents/sync/openai_key # completion for beets # from https://wiki.archlinux.org/title/Beets -eval "$(beet completion)" +#eval "$(beet completion)" # aliases alias pacget="pacman -Slq | fzf --multi --preview 'pacman -Si {1}' | xargs -ro sudo pacman -S" -- cgit v1.2.3 From 2c56ca06c709b19a2f0c9eb303c2114ddfe8758e Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 13 Dec 2023 16:07:51 +0000 Subject: Wallpaper bobbins --- i3-config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/i3-config b/i3-config index 7400ca9..bb08df0 100644 --- a/i3-config +++ b/i3-config @@ -73,7 +73,8 @@ floating_modifier $mod #exec --no-startup-id nm-applet #exec --no-startup-id /usr/bin/qjackctl #exec --no-startup-id /usr/bin/nextcloud -exec --no-startup-id /usr/bin/feh --bg-max /home/lemon/Pictures/Wallpapers/wp2015908-dystopia-wallpapers.jpg +#exec --no-startup-id /usr/bin/feh --bg-max /home/lemon/Pictures/Wallpapers/wp2015908-dystopia-wallpapers.jpg +exec --no-startup-id /usr/bin/feh --bg-max /home/lemon/Pictures/stable_diffusion/test_influencer/altar8.png #exec --no-startup-id /home/lemon/.screenlayout/two_screens_normal.sh #exec --no-startup-id /home/lemon/.screenlayout/desktop_layout_debian.sh exec --no-startup-id /home/lemon/.screenlayout/left_horiz_right_vert.sh -- cgit v1.2.3 From 00d072da1273d8dc966d3fd2c8483d823a2b06c5 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 13 Dec 2023 16:08:13 +0000 Subject: Adds something about Jetbrains toolbox being a default app --- mimeapps.list_to_dot_config | 1 + 1 file changed, 1 insertion(+) diff --git a/mimeapps.list_to_dot_config b/mimeapps.list_to_dot_config index 3407e7b..4d1e781 100644 --- a/mimeapps.list_to_dot_config +++ b/mimeapps.list_to_dot_config @@ -13,3 +13,4 @@ x-scheme-handler/unknown=librewolf.desktop image/jpeg=feh.desktop application/pdf=org.pwmt.zathura.desktop image/png=feh.desktop +x-scheme-handler/jetbrains=jetbrains-toolbox.desktop -- cgit v1.2.3 From c2af1f7e18c69bde1c61b96058fa124c60b6721f Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 13 Dec 2023 16:27:51 +0000 Subject: Changed leader key in vim to space --- vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index c6fec1f..edbb0cb 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -7,7 +7,7 @@ runtime macros/matchit.vim "allows jumping between brackets with % in normal mod " }}} " Leaders {{{ let maplocalleader = "\\" -let mapleader = "," +let mapleader = " " nnoremap q :call TaskWarriorAddCurrentLine() " pandoc command to generate weekly plan page in Firefox (or not, if we just " wish to refresh) -- cgit v1.2.3