Skip to content

Instantly share code, notes, and snippets.

View TunkShif's full-sized avatar
👾

Tristan Yang TunkShif

👾
View GitHub Profile
@TunkShif
TunkShif / init.lua
Last active September 19, 2024 07:46
neovim config for elixir development
-- set your leader and local leader key
-- make sure to set `mapleader` and `maplocalleader` before lazy so your mappings are correct
vim.g.mapleader = " " -- using space as leader key
vim.g.maplocalleader = "," -- using comma as local leader
-- bootstrap lazy.nvim plugin manager
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
vim.fn.system({
"git",