Skip to content

Instantly share code, notes, and snippets.

@avi-antares
avi-antares / install-nvim.sh
Created July 13, 2026 04:55 — forked from griimick/install-nvim.sh
install nvim
#!/usr/bin/env bash
set -euo pipefail
VERSION="${NVIM_VERSION:-${1:-}}"
if [[ -z "$VERSION" ]]; then
echo "Usage: $0 <version>"
echo " e.g. $0 0.11.1"
echo " or NVIM_VERSION=0.11.1 $0"
exit 1
@avi-antares
avi-antares / init.lua
Created July 13, 2026 04:54 — forked from soumik-ant/init.lua
Minimal Neovim config - native LSP, treesitter, fzf, gruvbox
-- ============================================================
-- init.lua — minimal TypeScript Neovim config
-- ============================================================
-- [[ Options ]]
vim.g.mapleader = " "
vim.g.maplocalleader = " "
vim.opt.number = true
vim.opt.relativenumber = true
@avi-antares
avi-antares / Makefile
Created May 26, 2022 08:05 — forked from dmitriid/Makefile
Makefile: webpack, babel, stylus, eslint
### Makefile to be used when compiling assets for Event Manager
### Based on ideas from https://github.com/acdlite/the-react-way/blob/master/Makefile
###
### Requirements/assumptions of this Makefile:
### JS
### - webpack (include json and css loaders to webpack cofig just in case)
### - babel
### - eslint (eslint-plugin-react if you want more lints of your react code)
### - eslint-watch (broken until 2.0.0: https://github.com/rizowski/eslint-watch/issues/8)
### CSS