Skip to content

Instantly share code, notes, and snippets.

View saiashirwad's full-sized avatar
🏠
Working from home

texoport saiashirwad

🏠
Working from home
View GitHub Profile
for_window [class=".*"] border pixel 0
set $mod Mod4
# is used in the bar {} block below.
font pango:monospace 8
exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork
# NetworkManager is the most popular way to manage wireless networks on Linux,
# and nm-applet is a desktop environment-independent system tray GUI for it.
@saiashirwad
saiashirwad / init.vim
Created February 7, 2021 11:42
My current vim config
let loaded_matchparen = 1
let mapleader = " "
nnoremap <leader>h :wincmd h<CR>
nnoremap <leader>j :wincmd j<CR>
nnoremap <leader>k :wincmd k<CR>
nnoremap <leader>l :wincmd l<CR>
call plug#begin()
Plug 'alvan/vim-closetag'
@saiashirwad
saiashirwad / Dark-Reader-Settings.json
Created September 25, 2020 00:23
Dark Reader Chrome Settings Gruvbox
{
"applyToListedOnly": false,
"automation": "",
"changeBrowserTheme": false,
"customThemes": [
{
"url": [
"arxiv.org"
],
"theme": {
@saiashirwad
saiashirwad / colab_setup.py
Created June 15, 2019 19:35
Basic Colab Setup
# to be set
use_kaggle = False
competition_name = ""
base_folder = 'fastai_v3/'
from google.colab import drive
drive.mount('/content/gdrive/', force_remount=True)
root_dir = '/content/gdrive/My Drive/'
base_dir = root_dir + base_folder