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
| (require 'cl-lib) | |
| (require 'package) | |
| ;; add melpa as package source | |
| (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) | |
| (package-initialize) | |
| ;; list of packages to install | |
| (defvar my-packages | |
| '(smart-tabs-mode smart-tab company flycheck lsp-mode lsp-ui rustic) |
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/python | |
| import pyinotify | |
| import asyncio | |
| import aiohttp | |
| import sys | |
| def debounce(wait): | |
| def decorator(fn): | |
| def debounced(*args, **kwargs): |
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
| evaluate-commands %sh{ | |
| plugins="$kak_config/plugins" | |
| mkdir -p "$plugins" | |
| [ ! -e "$plugins/plug.kak" ] && \ | |
| git clone -q https://github.com/andreyorst/plug.kak.git "$plugins/plug.kak" | |
| printf "%s\n" "source '$plugins/plug.kak/rc/plug.kak'" | |
| } | |
| plug "andreyorst/plug.kak" noload | |
| plug "andreyorst/smarttab.kak" | |
| plug "alexherbo2/auto-pairs.kak" |
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
| let | |
| # The location where your uploaded files are stored | |
| immich.upload_location="/srv/immich"; | |
| # Connection secrets for postgres and typesense. You should change these to random passwords | |
| immich.typesense_api_key=""; | |
| immich.db_password=""; | |
| in | |
| { pkgs, lib, ... }: |
OlderNewer