Skip to content

Instantly share code, notes, and snippets.

View zQueal's full-sized avatar
🦍

Zach Queal zQueal

🦍
View GitHub Profile

Keybase proof

I hereby claim:

  • I am zqueal on github.
  • I am zqueal (https://keybase.io/zqueal) on keybase.
  • I have a public key whose fingerprint is B4B8 4717 EBC6 E9E9 A1A4 3AE8 2A26 0170 1EF9 074F

To claim this, I am signing this object:

0ms.dev

sdns://AgcAAAAAAAAAAAAHMG1zLmRldgovZG5zLXF1ZXJ5

doh-de.blahdns.com

sdns://AgcAAAAAAAAAAAASZG9oLWRlLmJsYWhkbnMuY29tCi9kbnMtcXVlcnk

doh-sg.blahdns.com

sdns://AgcAAAAAAAAAAAASZG9oLXNnLmJsYWhkbnMuY29tCi9kbnMtcXVlcnk

cloudflare-dns.com

@zQueal
zQueal / aria2.conf
Created July 7, 2024 08:39
aria2c config file
continue=true
max-concurrent-downloads=2
split=8
console-log-level=warn
file-allocation=none
summary-interval=0
download-result=hide
disable-ipv6=true
check-certificate=false
@zQueal
zQueal / .wezterm.lua
Created July 7, 2024 08:38
wezterm config
local wezterm = require "wezterm"
local act = wezterm.action
return {
hide_tab_bar_if_only_one_tab = true,
default_prog = {"elvish.exe"},
window_background_opacity = 1,
window_close_confirmation = "NeverPrompt",
initial_cols = 150,
initial_rows = 40,
@zQueal
zQueal / bindings.vim
Created July 7, 2024 08:32
neovim config files
inoremap jk <ESC>
nnoremap n :norm! nzzzv<CR>
nnoremap N :norm! Nzzzv<CR>
nnoremap H ^
nnoremap L $
nnoremap <Return> o<ESC>
nnoremap <Leader>w :up<CR>
nnoremap <Leader>wq :wq<CR>
nnoremap <Leader>q :q<CR>
nnoremap <Leader>qq :qall!<CR>
aspe:keyoxide.org:GG5JT7M2KJ74E54E4KLXBGBUJY
@zQueal
zQueal / README.md
Last active December 3, 2021 22:28
A little how-to on how to build `atto` from source.

Requirements

  • golang v1.17 or higher
  • git
  • Add executables to %PATH%

If you're working under Windows and would like to use winget it may make this process a little easier.

These should be the file locations you need to add to your %PATH%;

  • go: %ProgramFiles%\Go\bin
"" This was made by Reddit user u/SamLovesNotion. Also with the help of - https://tdaly.co.uk/projects/vim-statusline-generator/ for learning the syntax. Sorry for English & grammar, this post was made in hurry.
" Images - https://www.reddit.com/r/vim/comments/ld8h2j/i_made_a_status_line_from_scratch_no_plugins_used/
" I have used Nerd icon fonts. Icons won't work without them. https://github.com/ryanoasis/nerd-fonts/
" This statusline looks exactly like Vim Airline (even more customizable & powerful) & loads faster than Vim airline. Only take few ms to load.
" STARTUP TIME - With Vim Airline - ~250ms. With this statusline - ~100ms. Without any statusline - ~98ms.
" Add all of this at the end of your vimrc OR Create separate file like 'statusline.vim' & 'colorsgroup.vim' & source those files in your main vimrc.
netsh wlan show profile * key=clear
@zQueal
zQueal / vim_update_plugins.bat
Created August 16, 2017 01:02
A simple updater for the Vim8 plugin system that isn't crazy painful.
@ECHO OFF
REM Download FindUtils: http://gnuwin32.sourceforge.net/packages/findutils.htm
REM Add xargs.exe to your %PATH%
REM Add %PLUGINS% (environment variable) == your vim "packpath"
REM E.g %PLUGINS% = C:\Users\zqueal\.vim\pack\plugins\start
REM Add this batchfile to your %PATH%
REM run vim_update_plugins from CMD (or whatever you named the batchfile
cd %PLUGINS%