Skip to content

Instantly share code, notes, and snippets.

View kuator's full-sized avatar
🕸️
meh

kuator kuator

🕸️
meh
View GitHub Profile
@kuator
kuator / init.el
Created May 10, 2022 10:40
init.el
;; Add Melpa packages to Repos
(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(package-initialize)
;; Bootstrap use-package
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
@kuator
kuator / init.el
Created April 30, 2022 11:42
init.el
;; Add Melpa packages to Repos
(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(package-initialize)
;; Bootstrap use-package
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
@kuator
kuator / build.sh
Last active August 2, 2022 03:27
Neovim build script
if [ ! -d ~/dev/neovim ]
then
mkdir -p ~/dev/neovim
cd ~/dev/neovim
git clone https://github.com/neovim/neovim src
fi
ROOT_DIR="$HOME/dev/neovim"
BUILD_DIR="$ROOT_DIR/build"
SOURCE_DIR="$ROOT_DIR/src"
@kuator
kuator / Hide youtube controls.js
Last active April 25, 2024 15:30
Hide Youtube controls by pressing h
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.youtube.com/*
// @grant none
// ==/UserScript==
@kuator
kuator / cvimrc.vim
Created October 20, 2018 13:22 — forked from zchee/cvimrc.vim
vimrc for cVim
set smoothscroll
set autoupdategist
map .t :tabnew chrome://newtab<CR>
let configpath = '/path/to/your/.cvimrc'
set localconfig " Update settings via a local file (and the `:source` command) rather"