Added fish config

This commit is contained in:
Brett Mandler 2018-07-18 10:24:14 -04:00
parent 2968374081
commit 55dd23899e
No known key found for this signature in database
GPG key ID: 72B1D27CB7D82F0F
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,9 @@
;;; lang/fish/config.el -*- lexical-binding: t; -*-
(def-package! fish-mode
:mode "\\.fish$"
:interpreter "fish"
:config
(add-hook! fish-mode
(add-hook 'before-save-hook #'fish_indent-before-save)))

View file

@ -0,0 +1,4 @@
;; -*- no-byte-compile: t; -*-
;;; lang/fish/packages.el
(package! fish-mode)