Skip to content

Instantly share code, notes, and snippets.

View harsh98trivedi's full-sized avatar
⚙️
Tinkering

Harsh Trivedi harsh98trivedi

⚙️
Tinkering
View GitHub Profile
@harsh98trivedi
harsh98trivedi / .vimrc
Created March 26, 2022 03:23
A configuration file for better vim.
" The Ultimate vimrc: https://github.com/amix/vimrc
" - Requires vim with python3 support. For Mac, you can install vim with Homebrew for python3 support
" - Make sure you use a Hack font on your terminal for icons to work properly.
" Install vim-plug if not found
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
endif
@harsh98trivedi
harsh98trivedi / docker-compose.yml
Created March 26, 2022 03:20
A simple Docker Compose for WordPress
version: '3'
services:
# Database
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
@harsh98trivedi
harsh98trivedi / Gemfile
Last active March 26, 2022 03:24
Basic Jekyll _config.yml and Gemfile for Blog
# GEMFILE FOR JEKYLL
source "http://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.