This file contains 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
# vim:fileencoding=utf-8:foldmethod=marker | |
#: Fonts {{{ | |
#: kitty has very powerful font management. You can configure | |
#: individual font faces and even specify special fonts for particular | |
#: characters. | |
# font_family monospace | |
# bold_font auto |
This file contains 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
-- Keymaps are automatically loaded on the VeryLazy event | |
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua | |
-- Add any additional keymaps here | |
local map = vim.keymap.set | |
map("n", "j", "jzz") | |
map("n", "k", "kzz") | |
map("n", "n", "nzz") | |
map("n", "N", "Nzz") |
This file contains 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
-- ~/.config/nvim/lua/plugins/purescript.lua | |
return { | |
{ "purescript-contrib/purescript-vim" }, | |
{ "AstroNvim/astrolsp", | |
opts = { | |
config = { | |
purescriptls = { | |
settings = { | |
purescript = { | |
formatter = "purs-tidy", |
This file contains 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
-- ~/.config/nvim/lua/plugins/mappings.lua | |
return { | |
{ | |
"AstroNvim/astrocore", | |
---@type AstroCoreOpts | |
opts = { | |
mappings = { | |
n = { | |
["j"] = { "jzz" }, | |
["k"] = { "kzz" }, |
This file contains 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
$ sudo pacman -S unixodbc | |
$ sudo pacman -S jdk-openjdk | |
$ sudo pacman -S wxwidgets-gtk3 | |
$ sudo pacman -S fop | |
export KERL_DOC_TARGETS="html chunks" | |
export KERL_BUILD_DOCS=yes | |
export KERL_BUILD_BACKEND=tarball | |
export KERL_CONFIGURE_OPTIONS="--without-odbc" |
This file contains 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
Location Gleam package: https://aur.archlinux.org/packages/gleam | |
Download snapshot: wget https://aur.archlinux.org/cgit/aur.git/snapshot/gleam.tar.gz | |
Extract: tar xvzf gleam.tar.gz && cd gleam | |
Build package but ignore dependencies as we are using Kerl: makepkg -d | |
Install: sudo pacman -Udd *.zst |
OlderNewer