diff --git a/.config/fish/fish_variables b/.config/fish/fish_variables new file mode 100644 index 0000000..edd7afa --- /dev/null +++ b/.config/fish/fish_variables @@ -0,0 +1,41 @@ +# This file contains fish universal variable definitions. +# VERSION: 3.0 +SETUVAR FZF_COMPLETE:2 +SETUVAR FZF_DEFAULT_OPTS:\x2d\x2dbind\x20\x27bs\x3abackward\x2ddelete\x2dchar/eof\x27 +SETUVAR __fish_initialized:3800 +SETUVAR _fisher_brewingweasel_2F_fishbang_files:\x7e/\x2econfig/fish/conf\x2ed/fishbang\x2efish +SETUVAR _fisher_jorgebucaran_2F_fisher_files:\x7e/\x2econfig/fish/functions/fisher\x2efish\x1e\x7e/\x2econfig/fish/completions/fisher\x2efish +SETUVAR _fisher_plugins:jorgebucaran/fisher\x1ebrewingweasel/fishbang +SETUVAR _fisher_upgraded_to_4_4:\x1d +SETUVAR fifc_keybinding:\x09 +SETUVAR fifc_open_keybinding:ctrl\x2do +SETUVAR fish_color_autosuggestion:brblack +SETUVAR fish_color_cancel:\x2dr +SETUVAR fish_color_command:blue +SETUVAR fish_color_comment:red +SETUVAR fish_color_cwd:green +SETUVAR fish_color_cwd_root:red +SETUVAR fish_color_end:green +SETUVAR fish_color_error:brred +SETUVAR fish_color_escape:brcyan +SETUVAR fish_color_history_current:\x2d\x2dbold +SETUVAR fish_color_host:normal +SETUVAR fish_color_host_remote:yellow +SETUVAR fish_color_normal:normal +SETUVAR fish_color_operator:brcyan +SETUVAR fish_color_param:cyan +SETUVAR fish_color_quote:yellow +SETUVAR fish_color_redirection:cyan\x1e\x2d\x2dbold +SETUVAR fish_color_search_match:white\x1e\x2d\x2dbackground\x3dbrblack +SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack +SETUVAR fish_color_status:red +SETUVAR fish_color_user:brgreen +SETUVAR fish_color_valid_path:\x2d\x2dunderline +SETUVAR fish_complete_path:vertical\x1e/opt/homebrew/Cellar/fish/3\x2e7\x2e1/share/fish/completions\x1e/opt/homebrew/Cellar/fish/4\x2e0\x2e1/share/fish/completions +SETUVAR fish_key_bindings:fish_vi_key_bindings +SETUVAR fish_pager_color_completion:normal +SETUVAR fish_pager_color_description:yellow\x1e\x2di +SETUVAR fish_pager_color_prefix:normal\x1e\x2d\x2dbold\x1e\x2d\x2dunderline +SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan +SETUVAR fish_pager_color_selected_background:\x2dr +SETUVAR fish_user_paths:/Users/afonso/opt/fish/bin\x1e/Users/afonso/opt/neovim/bin\x1e/Users/afonso/\x2eghcup/bin\x1e/Users/afonso/\x2ecargo/bin\x1e/Users/afonso/go/bin\x1e/Users/afonso/\x2elocal/bin\x1e/Users/afonso/\x2elocal/share/nvim/mason/bin\x1e/sbin\x1e/usr/sbin\x1e/Users/afonso/\x2egem/bin\x1e/opt/homebrew/opt/texlive/bin\x1e/opt/homebrew/bin diff --git a/.gitconfig b/.gitconfig index 639c2f6..6083b15 100644 --- a/.gitconfig +++ b/.gitconfig @@ -1,7 +1,11 @@ [user] email = afonso@francof.net - name = afranco - signingkey = ~/.ssh/signing_key + name = afonso + signingkey = ~/.ssh/touch_key +[includeIf "hasconfig:remote.*.url:https://github.com/**"] + path = ~/.gitconfig-gh +[includeIf "hasconfig:remote.*.url:ssh://git@github.com/**"] + path = ~/.gitconfig-gh [filter "lfs"] process = git-lfs filter-process required = true diff --git a/.latexmkrc b/.latexmkrc deleted file mode 100644 index acdaccf..0000000 --- a/.latexmkrc +++ /dev/null @@ -1,9 +0,0 @@ -add_cus_dep( 'acn', 'acr', 0, 'makeglossaries' ); -add_cus_dep( 'glo', 'gls', 0, 'makeglossaries' ); -$clean_ext .= " acr acn alg glo gls glg"; -sub makeglossaries { - my ($base_name, $path) = fileparse( $_[0] ); - my @args = ( "-d", $path, $base_name ); - if ($silent) { unshift @args, "-q"; } - return system "makeglossaries", @args; -}