Skip to content

Instantly share code, notes, and snippets.

View TahirJalilov's full-sized avatar

Tahir Jalilov TahirJalilov

View GitHub Profile
@TahirJalilov
TahirJalilov / .vimrc
Created February 23, 2021 18:08
vim configs
set number
set mouse=a
syntax on
@TahirJalilov
TahirJalilov / .tmux.conf
Created February 23, 2021 18:07
tmux configs
# Enable mouse mode (tmux 2.1 and above)
set -g mouse on
TERM="xterm-256color"
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
# Other examples:
@TahirJalilov
TahirJalilov / .sqliterc
Created February 23, 2021 18:06
sqlite configs
.headers on
.mode column
.nullvalue null
@TahirJalilov
TahirJalilov / flake8.txt
Last active February 23, 2021 18:04
flake8 pycharm settings
Name: Flake8
File type: Python
Scope: Project Files/Current File
Program: $PyInterpreterDirectory$/flake8
Arguments: $FileDir$/$FileName$
Output paths to refresh: $FileDir$
Working directory: $ProjectFileDir$
Outup filters: $FILE_PATH$:$LINE$:$COLUMN$: $MESSAGE$
@TahirJalilov
TahirJalilov / PyPi upload guide.md
Created January 27, 2021 15:00 — forked from kevinkosterr/PyPi upload guide.md
Guide to uploading a package to PyPi

Uploading your package to a PyPi server

Creating a setup.py file

Create a setup.py file, PyCharm has a tool for this. Tools -> create setup.py a basic setup.py file looks like this:

from setuptools import setup

with open('README.md') as readme: