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
--- General Options --- | |
do | |
local options = { | |
backup = false, | |
hidden = true, | |
clipboard = "unnamedplus", | |
cmdheight = 1, | |
completeopt = { "menuone", "noselect" }, | |
conceallevel = 0, | |
fileencoding = "utf-8", |
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
diff --git a/rivertile/main.zig b/rivertile/main.zig | |
index 6b9c458..cbef542 100644 | |
--- a/rivertile/main.zig | |
+++ b/rivertile/main.zig | |
@@ -1,5 +1,4 @@ | |
// This file is part of river, a dynamic tiling wayland compositor. | |
-// | |
// Copyright 2020-2021 The River Developers | |
// | |
// This program is free software: you can redistribute it and/or modify |
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
" Simple init.vim that's compatible with Neovim and Vim | |
let g:Tabsize=4 | |
let g:JKEscape=v:true | |
" Syntax and colors | |
" if exists('g:syntax_on') | |
" syntax on | |
" endif |
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 python | |
from sys import argv, exit | |
from flask import Flask | |
from os.path import exists | |
PORT=8069 | |
def main(): | |
if len(argv) < 2: |
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 | |
# Taken mostly from Gentoo's handbok | |
newRoot="$1" | |
printf "chroot into '$newRoot'?(y/N) " | |
read confirm | |
[ "$confirm" = "y" ] && { | |
# Mount required filesystems | |
mkdir -p "$newRoot" |
NewerOlder