Skip to content

Instantly share code, notes, and snippets.

@mellowcoffee
mellowcoffee / init.lua
Last active April 4, 2025 12:11
(n)vim config
-- Author: Maxwell (caffeineee @ github)
-- License: ISC
local vim = vim
local g = vim.g
local opt = vim.opt
local Plug = vim.fn['plug#']
vim.call('plug#begin')
Plug('nvim-lua/plenary.nvim') -- Telescope dependency
@mellowcoffee
mellowcoffee / style.css
Created June 7, 2023 16:23
Default style
*,
*::before,
*::after {
box-sizing: border-box;
}
::selection {
background-color: #21252b;
}
:root {
font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";