This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env stack | |
-- stack --resolver lts-14.20 --install-ghc runghc --package either --package free | |
{-# LANGUAGE DeriveFunctor #-} | |
module Main | |
where | |
import Control.Applicative.Free | |
import Data.Bifunctor (first) | |
import Data.Either.Combinators (maybeToRight) | |
import Data.Either.Validation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set-option global startup_info_version 0 | |
set-option global ui_options ncurses_assistant=none | |
add-highlighter global/ number-lines | |
colorscheme zenburn | |
source ~/.config/kak/fuzzy.kak | |
source ~/.config/kak/purescript.kak | |
source ~/.config/kak/dhall.kak | |
## Editor config | |
hook global BufCreate .* %{editorconfig-load} |