Skip to content

Instantly share code, notes, and snippets.

@pianocomposer321
pianocomposer321 / colors.lua
Last active October 10, 2022 22:26
Feline.nvim config
-- ~/.config/nvim/lua/plugins/feline/colors.lua
-- One-dark colors
local _M = {
bg = '#2c323c',
fg = none,
yellow = '#e5c07b',
cyan = '#8abeb7',
darkblue = '#528bff',
green = '#98c379',
@pianocomposer321
pianocomposer321 / lualine.lua
Created January 22, 2021 15:03
Lualine Diagnostics
local lualine = require("lualine")
local M = {}
vim.cmd('highlight my_hl_warn guifg=#FABD2F guibg=#3C3836')
vim.cmd('highlight my_hl_error guifg=#FB4934 guibg=#3C3836')
local function diagnostics()
local errors = 0
local warnings = 0