Skip to content

Instantly share code, notes, and snippets.

View klebershimabuku's full-sized avatar

Kleber Shimabuku klebershimabuku

View GitHub Profile
@remarkablemark
remarkablemark / Dockerfile
Last active June 2, 2025 22:40
Install node and npm with nvm using Docker.
# set the base image to Debian
# https://hub.docker.com/_/debian/
FROM debian:latest
# replace shell with bash so we can source files
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
# update the repository sources list
# and install dependencies
RUN apt-get update \
@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",