new alacritty, fish, omf

This commit is contained in:
David Chen 2019-07-06 17:56:57 +09:00
parent eb1bb24949
commit caf5780657
21 changed files with 1545 additions and 25 deletions

7
fish/conf.d/omf.fish Normal file
View file

@ -0,0 +1,7 @@
# Path to Oh My Fish install.
set -q XDG_DATA_HOME
and set -gx OMF_PATH "$XDG_DATA_HOME/omf"
or set -gx OMF_PATH "$HOME/.local/share/omf"
# Load Oh My Fish configuration.
source $OMF_PATH/init.fish

4
fish/config.fish Normal file
View file

@ -0,0 +1,4 @@
function time --description="Bash time function"
command time --portability $argv
end

31
fish/fish_variables Normal file
View file

@ -0,0 +1,31 @@
# This file contains fish universal variable definitions.
# VERSION: 3.0
SETUVAR __fish_init_2_3_0:\x1d
SETUVAR fish_color_autosuggestion:969896
SETUVAR fish_color_cancel:\x2dr
SETUVAR fish_color_command:b294bb
SETUVAR fish_color_comment:f0c674
SETUVAR fish_color_cwd:green
SETUVAR fish_color_cwd_root:red
SETUVAR fish_color_end:b294bb
SETUVAR fish_color_error:cc6666
SETUVAR fish_color_escape:00a6b2
SETUVAR fish_color_history_current:\x2d\x2dbold
SETUVAR fish_color_host:normal
SETUVAR fish_color_match:\x2d\x2dbackground\x3dbrblue
SETUVAR fish_color_normal:normal
SETUVAR fish_color_operator:00a6b2
SETUVAR fish_color_param:81a2be
SETUVAR fish_color_quote:b5bd68
SETUVAR fish_color_redirection:8abeb7
SETUVAR fish_color_search_match:bryellow\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_greeting:Welcome\x20to\x20fish\x2c\x20the\x20friendly\x20interactive\x20shell
SETUVAR fish_key_bindings:fish_default_key_bindings
SETUVAR fish_pager_color_completion:normal
SETUVAR fish_pager_color_description:B3A06D\x1eyellow
SETUVAR fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan

4
fish/functions/c.fish Normal file
View file

@ -0,0 +1,4 @@
# Defined in - @ line 1
function c --description 'alias c clear'
clear $argv;
end

View file

@ -0,0 +1 @@
/home/david/.local/share/omf/themes/agnoster/fish_prompt.fish

4
fish/functions/l.fish Normal file
View file

@ -0,0 +1,4 @@
# Defined in - @ line 1
function l --description 'alias l ls -la'
ls -la $argv;
end

4
fish/functions/lg.fish Normal file
View file

@ -0,0 +1,4 @@
# Defined in - @ line 1
function lg --description 'alias lg lazygit'
lazygit $argv;
end

4
fish/functions/ra.fish Normal file
View file

@ -0,0 +1,4 @@
# Defined in - @ line 1
function ra --description 'alias ra ranger'
ranger $argv;
end

4
fish/functions/s.fish Normal file
View file

@ -0,0 +1,4 @@
# Defined in - @ line 1
function s --description 'alias s neofetch'
neofetch $argv;
end

4
fish/functions/sudo.fish Normal file
View file

@ -0,0 +1,4 @@
# Defined in - @ line 1
function sudo --description 'alias sudo sudo -E'
command sudo -E $argv;
end