This commit is contained in:
Marcel Kapfer (mmk2410) 2016-12-18 17:45:47 +01:00
commit b2776d1acc
4 changed files with 14 additions and 67 deletions

View File

@ -68,7 +68,7 @@
'(inhibit-startup-screen t)
'(package-selected-packages
(quote
(mips-mode stumpwm-mode slime muttrc-mode diff-hl magit wanderlust ## auctex yaml-mode typescript sass-mode php-mode outlined-elisp-mode monokai-theme markdown-mode fill-column-indicator edit-server dracula-theme dart-mode coffee-mode auto-complete atom-one-dark-theme atom-dark-theme)))
(fish-mode hugo mips-mode stumpwm-mode slime muttrc-mode diff-hl magit wanderlust ## auctex yaml-mode typescript sass-mode php-mode outlined-elisp-mode monokai-theme markdown-mode fill-column-indicator edit-server dracula-theme dart-mode coffee-mode auto-complete atom-one-dark-theme atom-dark-theme)))
'(send-mail-function (quote smtpmail-send-it)))
(custom-set-faces
;; custom-set-faces was added by Custom.

View File

@ -34,6 +34,8 @@ alias q=' exit'
alias Q=' exit'
alias x=' exit'
alias cd..='cd ..'
alias mmk2410='~/.mmk2410'
if [ -z $SSH_CLIENT ]
~/.mmk2410
end
@ -46,3 +48,7 @@ if [ -z $VISUAL ]
set -Ux VISUAL nvim
end
if [ -z $GOPATH ]
set -Ux GOPATH ~/.go
end

View File

@ -1,66 +0,0 @@
- cmd: ls /usr/bin/
when: 1462367636
paths:
- /usr/bin/
- cmd: pub
when: 1462367761
- cmd: dart
when: 1462367764
- cmd: cd rtlwifi_new/
when: 1462368025
paths:
- rtlwifi_new/
- cmd: sudo make uninstall
when: 1462368036
- cmd: sudo update-initramfs -u
when: 1462368061
- cmd: man su
when: 1462368073
- cmd: sudo update-grub
when: 1462368103
- cmd: sudo update-grub2
when: 1462368119
- cmd: cd
when: 1462368640
- cmd: l dotfiles/
when: 1462368644
paths:
- dotfiles/
- cmd: cd .config/
when: 1462368648
paths:
- .config/
- cmd: l
when: 1462368649
- cmd: ln -s ~/dotfiles/fish/
when: 1462368659
- cmd: ls
when: 1462368662
- cmd: ll fish/
when: 1462368666
paths:
- fish/
- cmd: ll
when: 1462368669
- cmd: rm -rf fish/
when: 1462368672
paths:
- fish/
- cmd: ln -s ~/dotfiles/fish/
when: 1462368677
- cmd: ll
when: 1462368679
- cmd: ls fish/
when: 1462368682
paths:
- fish/
- cmd: exit
when: 1462368684
- cmd: bah
when: 1462368688
- cmd: bash
when: 1462368690
- cmd: exit
when: 1462368909
- cmd: exit
when: 1462368949

View File

@ -0,0 +1,7 @@
function fish_prompt --description 'Write out the prompt'
if test -z $WINDOW
printf '%s%s@%s%s%s%s%s> ' (set_color yellow) (whoami) (set_color purple) (hostname|cut -d . -f 1) (set_color $fish_color_cwd) (prompt_pwd) (set_color normal)
else
printf '%s%s@%s%s%s(%s)%s%s%s> ' (set_color yellow) (whoami) (set_color purple) (hostname|cut -d . -f 1) (set_color white) (echo $WINDOW) (set_color $fish_color_cwd) (prompt_pwd) (set_color normal)
end
end