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
-- Made with 'mini.colors' module of https://github.com/echasnovski/mini.nvim | |
if vim.g.colors_name ~= nil then vim.cmd('highlight clear') end | |
vim.g.colors_name = "achromat-darker" | |
-- Highlight groups | |
local hi = vim.api.nvim_set_hl | |
hi(0, "@attribute.builtin", { link = "Special" }) | |
hi(0, "@character.special", { link = "SpecialChar" }) |
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
#!/bin/sh | |
# This is the example configuration file for river. | |
# | |
# If you wish to edit this, you will probably want to copy it to | |
# $XDG_CONFIG_HOME/river/init or $HOME/.config/river/init first. | |
# | |
# See the river(1), riverctl(1), and rivertile(1) man pages for complete | |
# documentation. |
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
version: '3.8' | |
services: | |
db: | |
image: docker.io/mysql:latest | |
cap_add: | |
- SYS_NICE | |
restart: always | |
environment: | |
- MYSQL_ROOT_PASSWORD=root | |
ports: |
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
#!/bin/sh | |
curl -d '{"from":0,"size":20,"sortField":"year","sortOrder":"DESC","search":{"documentType":"exam-paper","moduleCode":null,"school":null,"year":null,"author":null,"semester":null,"query":"ca117","programme":null}}' \ | |
-H "authority: api.gurudevelopments.com" \ | |
-H "method: POST" \ | |
-H "path: /search/archive" \ | |
-H "scheme: https" \ | |
-H "accept: application/json" \ | |
-H "accept-language: en-GB,en-US;q=0.9,en;q=0.8" \ | |
-H "content-length: 204" \ |
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
#!/bin/sh | |
cmd=$( ( IFS=":" | |
for _path in $PATH | |
do | |
echo $_path | |
done ) \ | |
| xargs -i find -L {} -executable -maxdepth 1 -mindepth 1 -type f -printf '%P\n' \ | |
| sort -u \ | |
| fzy ) |