🪴 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ui: fix tty characters

robin f422f3d5 13847559

+12 -2
+5
config/config/artio.lua
··· 3 3 return require("artio").select(...) 4 4 end 5 5 6 + local not_tty = vim.env.TERM ~= "linux" 7 + 6 8 require("artio").setup({ 7 9 opts = { 8 10 shrink = false, 9 11 prompt_title = false, 12 + marker = not_tty and "│" or "|", 13 + pointer = not_tty and "" or ">", 14 + promptprefix = not_tty and "" or ">", 10 15 }, 11 16 win = { 12 17 height = 0.3,
+1 -1
config/config/blink.indent.lua
··· 1 1 require("blink.indent").setup({ 2 2 static = { 3 - char = "▎", 3 + char = vim.env.TERM ~= "linux" and "▎" or "|", 4 4 highlights = { 5 5 "Whitespace", 6 6 -- "rainbow.1",
+1 -1
config/config/lylla.lua
··· 16 16 return fmtstr 17 17 end 18 18 19 - local prefix = "▌" 19 + local prefix = vim.env.TERM ~= "linux" and "▐" or "|" 20 20 21 21 local lylla = require("lylla") 22 22 local utils = require("lylla.utils")
+4
config/config/tabby.lua
··· 1 1 local left_sep = "" 2 2 local right_sep = "" 3 + if vim.env.TERM == "linux" then 4 + left_sep = "" 5 + right_sep = "" 6 + end 3 7 4 8 local C = require("evergarden.colors").get() 5 9 local tab_hl = "TabLine"
+1
config/lua/ivy/plugins/init.lua
··· 227 227 priority = 1000, 228 228 config = function() 229 229 require("mini.icons").setup({ 230 + style = vim.env.TERM ~= "linux" and "glyph" or "ascii", 230 231 filetype = { 231 232 qmljs = { glyph = "󰫾", hl = "MiniIconsAzure" }, 232 233 tera = { glyph = "󰅩", hl = "MiniIconsOrange" },