Skip to content

Instantly share code, notes, and snippets.

View gmdias727's full-sized avatar

Gabriel Mazieri gmdias727

View GitHub Profile
vim.cmd("set expandtab")
vim.cmd("set tabstop=4")
vim.cmd("set softtabstop=4")
vim.cmd("set shiftwidth=4")
vim.cmd("set number")
vim.g.mapleader = " "
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
package main
import "fmt"
type Rule struct {
Length int
Range []int
Count int
}