Skip to content

Instantly share code, notes, and snippets.

View teito-dev's full-sized avatar

Teito Klien teito-dev

View GitHub Profile
@teito-dev
teito-dev / init.vim
Created April 5, 2021 14:57
Neovim Config
" This is to install plug.vim incase its not present
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
"Plug-ins
call plug#begin('~/.config/nvim/plugged')
" Tools
@teito-dev
teito-dev / .inputrc
Created December 21, 2020 10:50
Inputrc for vi mode in bash
set editing-mode vi
set show-mode-in-prompt on
set vi-ins-mode-string "+"
set vi-cmd-mode-string "c"
# vi settings
$if mode=vi
# insert mode
set keymap vi-insert
Control-l: clear-screen # remap clear
@teito-dev
teito-dev / readme.md
Last active February 26, 2022 02:04
Frank Documentation for pyTelegramBotAPI

pyTelegramBotAPI

starter code

import telebot

# I just import the part down below seperately just for convinience
from telebot import types