Skip to content

Instantly share code, notes, and snippets.

View Jayonics's full-sized avatar

James Hopwood Jayonics

View GitHub Profile
@Jayonics
Jayonics / settings.json
Last active June 15, 2024 13:45
WingetSettings
{
"$schema": "https://aka.ms/winget-settings.schema.json",
// "path": "%LOCALAPPDATA%\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\settings.json",
// "gist": "https://gist.github.com/Jayonics/32030b23cefd5772a36d662de426ecd1/edit",
// "documentation": "https://aka.ms/winget-settings",
"visual": {
"anonymizeDisplayedPaths": true,
"progressBar": "rainbow"
},
"installBehavior": {
@Jayonics
Jayonics / .zshrc
Last active September 23, 2021 16:31
zsh
#!/usr/bin/env zsh
# Deleted the P10K Instant prompt feature (Causes issues with grc tty detection)
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation
export ZSH="$HOME/.oh-my-zsh"
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="powerlevel10k/powerlevel10k"
@Jayonics
Jayonics / .vimrc
Last active September 30, 2021 11:23
vim
" Turn off filetype and turn it on after plugins are loaded"
filetype off
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
call plug#begin('~/.vim/plugged')
Plug 'neoclide/coc.nvim', {'branch':'release'}