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
call plug#begin('~/.local/share/nvim/site/autoload/plug') | |
" NERDTree | |
Plug 'scrooloose/nerdtree' | |
Plug 'pangloss/vim-javascript' | |
Plug 'leafgarland/typescript-vim' | |
Plug 'peitalin/vim-jsx-typescript' | |
Plug 'styled-components/vim-styled-components', { 'branch': 'main' } | |
Plug 'jparise/vim-graphql' | |
" Git integration |
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
# -*- coding: utf-8 -*- | |
import json | |
import logging | |
import re | |
from concurrent import futures | |
import requests | |
import time | |
import json | |
import js2py |
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
// ==UserScript== | |
// @name Byepopups! | |
// @namespace http://mehmetefeakca.me/ | |
// @version 0.001 | |
// @description try to remove all those nasty popups that happen when you click anything in the website! They do suck.. | |
// @author MMTF | |
// @match *://*/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== |