Skip to content

Instantly share code, notes, and snippets.

View numToStr's full-sized avatar
🍵
Just wandering around...

numToStr

🍵
Just wandering around...
View GitHub Profile
@numToStr
numToStr / mic-noise-suppression-and-stuff.md
Created August 23, 2026 06:42 — forked from alterNERDtive/mic-noise-suppression-and-stuff.md
Setting up Microphone noise suppression (and stuff) for OBS with VST

You want to reduce noise from your microphone for streaming?

You need to boost your microphone levels without making it sound like bull crap?

You want to be able to run your microphone input through an equalizer?

Well, good thing there are VST plugins. And they integrate seamlessly into OBS as sound source filters.

Install ReaPlugs

[
{
"name": "Corne 3x6 v2, markstos layout (All Layers)",
"author": "https://github.com/markstos",
"plate": false,
"keyboard-layout-editor": "http://www.keyboard-layout-editor.com/#/gists/adfa7c3cd8f0c6d3a7b9155c6eab1748#file-corne-crkbd_c0psrul3-default-json",
"qmk-config": "https://config.qmk.fm/#/crkbd/rev1/LAYOUT"
},
[
{
[START][2021-11-21 21:10:04] LSP logging initiated
[INFO][2021-11-21 21:10:04] .../vim/lsp/rpc.lua:258 "Starting RPC client" {
args = { "--stdio" },
cmd = "vscode-eslint-language-server",
extra = {}
}
[TRACE][2021-11-21 21:10:04] .../lua/vim/lsp.lua:861 "LSP[eslint]" "initialize_params" {
capabilities = {
callHierarchy = {
dynamicRegistration = false
@numToStr
numToStr / au.lua
Last active August 20, 2023 05:15
Neovim autocmd in lua
--
-- Move this file to your neovim lua runtime path ie. ~/.config/nvim/lua/au.lua
--
local cmd = vim.api.nvim_command
local function autocmd(this, event, spec)
local is_table = type(spec) == 'table'
local pattern = is_table and spec[1] or '*'
local action = is_table and spec[2] or spec
if type(action) == 'function' then
@numToStr
numToStr / pseudo-text-objects.vim
Created April 21, 2021 14:58 — forked from romainl/pseudo-text-objects.md
Custom pseudo-text objects
" 24 simple pseudo-text objects
" -----------------------------
" i_ i. i: i, i; i| i/ i\ i* i+ i- i#
" a_ a. a: a, a; a| a/ a\ a* a+ a- a#
for char in [ '_', '.', ':', ',', ';', '<bar>', '/', '<bslash>', '*', '+', '-', '#' ]
execute 'xnoremap i' . char . ' :<C-u>normal! T' . char . 'vt' . char . '<CR>'
execute 'onoremap i' . char . ' :normal vi' . char . '<CR>'
execute 'xnoremap a' . char . ' :<C-u>normal! F' . char . 'vf' . char . '<CR>'
execute 'onoremap a' . char . ' :normal va' . char . '<CR>'
endfor
if ! (( $+commands[tmux] )); then
print "zsh tmux plugin: tmux not found. Please install tmux before using this plugin." >&2
return 1
fi
# ALIASES
alias ta='tmux attach -t'
alias tad='tmux attach -d -t'
alias ts='tmux new-session -s'
local api = vim.api
local cmd = vim.cmd
local fn = vim.fn
local W = {}
local base_opt = {
relative = 'editor',
style = 'minimal'
}
#!/bin/zsh
### Added by Zinit's installer
if [[ ! -f $HOME/.zinit/bin/zinit.zsh ]]; then
print -P "%F{33}▓▒░ %F{220}Installing %F{33}DHARMA%F{220} Initiative Plugin Manager (%F{33}zdharma/zinit%F{220})…%f"
command mkdir -p "$HOME/.zinit" && command chmod g-rwX "$HOME/.zinit"
command git clone https://github.com/zdharma/zinit "$HOME/.zinit/bin" && \
print -P "%F{33}▓▒░ %F{34}Installation successful.%f%b" || \
print -P "%F{160}▓▒░ The clone has failed.%f%b"
fi
@numToStr
numToStr / .zshrc
Created September 17, 2020 06:56
# Source manjaro-zsh-configuration
#if [[ -e /usr/share/zsh/manjaro-zsh-config ]]; then
# source /usr/share/zsh/manjaro-zsh-config
#fi
# Use manjaro zsh prompt
#if [[ -e /usr/share/zsh/manjaro-zsh-prompt ]]; then
# source /usr/share/zsh/manjaro-zsh-prompt
#fi
[[ -d ~/.zplug ]] || {