This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local utils = require "utils" | |
local appearance = require "appearance" | |
local icons = appearance.icons | |
local colors = appearance.colors | |
local mode_map = { | |
n = { "", "NORMAL" }, | |
i = { "", "INSERT" }, | |
ic = { "", "INSERT" }, | |
R = { "", "REPLACE" }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local M = {} | |
M.icons = { | |
dos = "", -- e70f | |
unix = "", -- f17c | |
mac = "", -- f179 | |
code = "", -- e000 | |
paste = "", -- f691 | |
dot = "", -- f62e | |
duck = " ", -- f6e4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local utils = require "utils" | |
local appearance = require "appearance" | |
local icons = appearance.icons | |
local colors = appearance.colors | |
local force_inactive = { | |
filetypes = { | |
"packer", | |
"Outline", | |
"alpha", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local gl = require "galaxyline" | |
local vcs = require "galaxyline.providers.vcs" | |
local condition = require "galaxyline.condition" | |
local devicons = require "nvim-web-devicons" | |
local utils = require "utils" | |
local appearance = require "appearance" | |
local icons = appearance.icons | |
local theme_map = appearance.color_map[vim.g.colors_name] or appearance.color_map["gruvbox"] | |
local colors = theme_map[vim.opt.background:get()] or theme_map["dark"] |