This file contains 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
{"lastUpload":"2018-12-14T05:36:45.088Z","extensionVersion":"v3.2.3"} |
This file contains 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
{"lastUpload":"2018-10-02T18:59:01.884Z","extensionVersion":"v3.1.2"} |
This file contains 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
// vim: filetype=c | |
map("K", "R"); | |
map(" k", "R"); | |
map("J", "E"); | |
map(" j", "E"); | |
map("H", "S"); | |
map(" h", "S"); | |
map(" l", "D"); | |
map("L", "D"); | |
map(">_F", "F"); |
This file contains 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
#neovim curser support | |
set -ga terminal-overrides ',*:Ss=\eE[%p1%d q:Se=\eE[2 q' | |
# Our .tmux.conf file | |
# Setting the prefix from C-b to C-s | |
set -g prefix C-a | |
# Free the original Ctrl-b prefix keybinding | |
unbind C-b | |
#setting the delay between prefix and command | |
set -sg escape-time 1 |
This file contains 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
set cncpcompletion | |
set completeonopen | |
let barposition = "bottom" | |
let mapleader = " " | |
imap <C-o> editWithVim | |
map <C-f> scrollFullPageDown | |
map <C-b> scrollFullPageUp | |
map <C-d> scrollPageDown | |
map <C-u> scrollPageUp | |
map <C-j> scrollDown |
This file contains 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
String file contents |
This file contains 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
" install: curl https://raw.githubusercontent.com/prabirshrestha/vim-lsp/master/minimal.vimrc -o /tmp/minimal.vimrc | |
" uninstall: rm /tmp/plug.vim && rm -rf /tmp/plugged | |
" run vim/neovim with minimal.vimrc | |
" vim -u minimal.vimrc | |
" :PlugInstall | |
set nocompatible hidden laststatus=2 | |
if !filereadable('/tmp/plug.vim') | |
silent !curl --insecure -fLo /tmp/plug.vim |
This file contains 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 sh | |
###################################################################### | |
# @author : Gavin Jaeger-Freeborn ([email protected]) | |
# @file : psave.sh | |
# @created : Thu 05 Dec 2019 01:03:47 PM MST | |
# | |
# @description : This is a simple script used for managing power. | |
# Simply set this as a cronjob (i have it run every 15 | |
# minutes). This script is specific to my thinkpad x200, I |
This file contains 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
command! -range=% Gist silent execute <line1> . "," . <line2> . "w !hub gist create -c -" |
This file contains 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
WINDOWS=$(xprop -root | grep '^_NET_CLIENT_LIST(WINDOW).*' |sed -e 's/^.*# //' -e 's/, /\n/g') | |
echo "$WINDOWS" | while read window; do | |
if xprop -id $window | grep 'Surf' > /dev/null; then | |
xprop -id $window | grep '_SURF_URI(STRING) = ' | cut -d'"' -f 2 | |
fi | |
done |
OlderNewer