neovim

remove old stuff from statusline

-61
-61
candy/lua/marshmallow/statusline.lua
··· 1 1 local M = {} 2 2 3 - local function set_highlights_kanagawa(recording) 4 - local palette = require("kanagawa.colors").setup().theme 5 - 6 - local bg = recording and palette.diff.delete or palette.ui.bg_m2 7 - local fg = recording and palette.vcs.removed or palette.ui.fg_dim 8 - 9 - vim.api.nvim_set_hl(0, "StatusLine", { fg = fg, bg = bg }) 10 - 11 - vim.api.nvim_set_hl(0, "Ruler", { 12 - fg = palette.syn.keyword, 13 - bg = bg, 14 - }) 15 - 16 - vim.api.nvim_set_hl(0, "StatusLsp", { 17 - fg = palette.syn.constant, 18 - bg = bg, 19 - }) 20 - 21 - vim.api.nvim_set_hl(0, "StatusFt", { 22 - fg = palette.syn.type, 23 - bg = bg, 24 - }) 25 - 26 - vim.api.nvim_set_hl(0, "StatusHead", { 27 - fg = palette.syn.identifier, 28 - bg = bg, 29 - }) 30 - end 31 - 32 - -- color = { 33 - -- black = "#000000", 34 - -- blue = "#7788AA", 35 - -- gray1 = "#080808", 36 - -- gray2 = "#191919", 37 - -- gray3 = "#2a2a2a", 38 - -- gray4 = "#444444", 39 - -- gray5 = "#555555", 40 - -- gray6 = "#7a7a7a", 41 - -- gray7 = "#aaaaaa", 42 - -- gray8 = "#cccccc", 43 - -- gray9 = "#DDDDDD", 44 - -- green = "#789978", 45 - -- lack = "#708090", 46 - -- luster = "#deeeed", 47 - -- none = "none", 48 - -- orange = "#ffaa88", 49 - -- red = "#D70000", 50 - -- yellow = "#abab77" 51 - -- }, 52 - -- color_special = { 53 - -- comment = "#3A3A3A", 54 - -- exception = "#505050", 55 - -- keyword = "#666666", 56 - -- main_background = "#101010", 57 - -- menu_background = "#191919", 58 - -- param = "#8E8E8E", 59 - -- popup_background = "#1A1A1A", 60 - -- statusline = "#242424", 61 - -- whitespace = "#202020" 62 - -- }, 63 - 64 3 local function set_highlights_lackluster(recording) 65 4 local lackluster = require("lackluster") 66 5