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

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