This file contains hidden or 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
{ | |
"name": "Vimium C", | |
"@time": "21/08/2020, 02:18:07", | |
"time": 1597954687494, | |
"environment": { | |
"extension": "1.84.3", | |
"platform": "linux", | |
"chrome": 84 | |
}, | |
"keyMappings": [ |
This file contains hidden or 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 tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
"compiler fish | |
setlocal textwidth=79 | |
"setlocal foldmethod=expr | |
call plug#begin('~/.nvim/plugins') | |
Plug 'tpope/vim-sensible' |
This file contains hidden or 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 python3 | |
import json | |
import subprocess | |
from pathlib import Path | |
venv_path = subprocess.check_output("poetry env info --path".split()) | |
venv_path = venv_path.decode("UTF-8") | |
settings = dict() |
This file contains hidden or 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
def boxit(input, borderStyle="-", tl="+", tr="+", bl="+", br="+"): | |
line1 = tl + borderStyle * (len(input)+2) + tr | |
line2 = "| " + input + " |" | |
line3 = bl + borderStyle * (len(input)+2) + br | |
result = '''{0} | |
{1} | |
{2}'''.format(line1, line2, line3) | |
return result |
NewerOlder