all repos — dotfiles-base @ a8f47416c4a6d01ba36b28a5526d6b3fc6060a65

base important configs that can safely be used almost anywhere

Add misc. vim/fish config edits
x1phosura x1phosura@x1phosura.zone
Fri, 11 Oct 2024 01:52:22 -0700
commit

a8f47416c4a6d01ba36b28a5526d6b3fc6060a65

parent

51e366dd6001a49634fbf384abd7bba8b800d747

3 files changed, 9 insertions(+), 5 deletions(-)

jump to
M .config/fish/config.fish.config/fish/config.fish

@@ -3,4 +3,8 @@

if status is-interactive # Commands to run in interactive sessions can go here set -U fish_greeting # can also use '-g' (TODO decide which to use) + + if test -f "$HOME/.fish_work_stuff" + source "$HOME/.fish_work_stuff" + end end
M .config/fish/functions/touch-script.fish.config/fish/functions/touch-script.fish

@@ -1,6 +1,8 @@

function touch-script --description 'Creates an executable shell script boilerplate file' if test (count $argv) -eq 0 - echo "usage: $argv[0] [path(s) to one or more script file(s) to init...]" + set -f func_name "$(basename $(status --current-filename) .fish)" + echo "usage: $func_name [path(s) to one or more " \ + "script file(s) to init...]" return 1 end
M .config/nvim/vimrc.vim.config/nvim/vimrc.vim

@@ -12,12 +12,10 @@ "if has('nvim') || has('termguicolors')

" set termguicolors "endif -" TODO: check _if_ mypeachpuff exists, if not, use peachpuff set background=dark -"colorscheme peachpuff "colorscheme x1ph-off " TODO: check _if_ x1ph-off exists, if not, use default -"colorscheme default -colorscheme lunaperche +"colorscheme lunaperche +colorscheme wildcharm syntax on set guicursor= "force using block cursor (for neovim)