Compare commits

..

4 Commits

Author SHA1 Message Date
ae940ac89e Fix a REALLY stupid mistake 2024-09-19 11:29:03 -03:00
4adc05b200 Remove local variables 2024-09-19 11:21:53 -03:00
1dbcf23052 Merge branch 'master' into alternative
Just to stay up to date with master.
2024-09-18 22:18:28 -03:00
0b98cfe77c Add some stuff for the initializer to work on another computer 2024-09-18 21:36:41 -03:00
3 changed files with 7 additions and 20 deletions

View File

@ -8,6 +8,8 @@ if status is-interactive
set fish_cursor_default block
set -Ux SHELL /bin/fish
set -Ux LD_LIBRARY_PATH "$LD_LIBRARY_PATH:$HOME/.local/lib"
set -Ux FZF_DEFAULT_OPTS "\
--color=bg+:#313244,bg:#1e1e2e,spinner:#f5e0dc,hl:#f38ba8 \
--color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc \
@ -16,15 +18,6 @@ if status is-interactive
fzf_key_bindings
fish_hybrid_key_bindings
sh -c '
if [ ! -f "/run/user/$UID/fish.please.lock" ]; then
please
touch "/run/user/$UID/fish.please.lock"
else
fortune -o | ponysay -b round
fi
'
starship init fish | source
end
set fish_greeting

View File

@ -1,17 +1,13 @@
# This file contains fish universal variable definitions.
# VERSION: 3.0
SETUVAR BACKUP:/home/allann/Documentos/backup
SETUVAR --export FZF_DEFAULT_OPTS:\x20\x20\x20\x20\x20\x20\x20\x20\x2d\x2dcolor\x3dbg\x2b\x3a\x23313244\x2cbg\x3a\x231e1e2e\x2cspinner\x3a\x23f5e0dc\x2chl\x3a\x23f38ba8\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2d\x2dcolor\x3dfg\x3a\x23cdd6f4\x2cheader\x3a\x23f38ba8\x2cinfo\x3a\x23cba6f7\x2cpointer\x3a\x23f5e0dc\x20\x20\x20\x20\x20\x20\x20\x20\x20\x2d\x2dcolor\x3dmarker\x3a\x23f5e0dc\x2cfg\x2b\x3a\x23cdd6f4\x2cprompt\x3a\x23cba6f7\x2chl\x2b\x3a\x23f38ba8
SETUVAR GPGKEY:3A7EF236ECD99667F3564FAEDAF2CB5910EEA5BF
SETUVAR GST_DEBUG_DUMP_DOT_DIR:/tmp/tmp\x2eTJkDp7Jo3E
SETUVAR --export MOUNT:/run/media/allann
SETUVAR --export SHELL:/bin/fish
SETUVAR __fish_initialized:3400
SETUVAR _fisher_jorgebucaran_2F_fisher_files:\x7e/\x2econfig/fish/functions/fisher\x2efish\x1e\x7e/\x2econfig/fish/completions/fisher\x2efish
SETUVAR _fisher_plugins:jorgebucaran/fisher
SETUVAR _fisher_upgraded_to_4_4:\x1d
SETUVAR --export clementine:/home/allann/Documentos/Clementine_Playlists
SETUVAR env:/home/allann/Documentos/workspace/env/python\x2denv
SETUVAR fish_color_autosuggestion:6c7086
SETUVAR fish_color_cancel:f38ba8
SETUVAR fish_color_command:89b4fa
@ -52,11 +48,5 @@ SETUVAR fish_pager_color_selected_background:\x2d\x2dreverse
SETUVAR fish_pager_color_selected_completion:\x1d
SETUVAR fish_pager_color_selected_description:\x1d
SETUVAR fish_pager_color_selected_prefix:\x1d
SETUVAR fish_user_paths:/home/allann/\x2elocal/bin
SETUVAR grabber:/home/allann/Imagens/Grabber
SETUVAR pictures:/home/allann/Imagens/Pictures
SETUVAR --export projects:/home/allann/Documentos/workspace/Projects
SETUVAR --export wiki:/home/allann/Documentos/Wiki
SETUVAR --export workspace:/home/allann/Documentos/workspace
SETUVAR fish_user_paths:/home/puc/\x2elocal/bin\x1e/home/allann/\x2elocal/bin
SETUVAR yimmy_solarized:true
SETUVAR ytdlp:/home/allann/V\u00eddeos/yt\x2ddlp

4
functions/compile.fish Normal file
View File

@ -0,0 +1,4 @@
function compile --wraps='g++ -O0 -g -fsanitize=address,undefined -o fds -std=c++17' --description 'alias compile g++ -O0 -g -fsanitize=address,undefined -o fds -std=c++17'
g++ -O0 -g -fsanitize=address,undefined -o fds -std=c++17 $argv
end