aboutsummaryrefslogtreecommitdiff
path: root/lua/themes
AgeCommit message (Collapse)AuthorFilesLines
2018-07-27solarized themed terms do not need bg and fg set againxcko1-0/+4
2017-10-23themes: add zenburn and make it the default 256 themeChris Rawnsley2-1/+40
2017-06-10More theme improvementsPhilipp Emanuel Weidmann3-1/+4
2017-06-05themes: simplify color definitionMarc André Tanner1-16/+16
2017-06-04Improve appearance of line numbers and EOF markersPhilipp Emanuel Weidmann1-2/+2
2017-03-15Make Vis' Solarized theme match the official Vim one.Tim Allen1-2/+2
2017-03-14Restructure display codeMarc André Tanner3-1/+16
Use pull instead of push based model for display code. Previously view.c was calling into the ui frontend code, with the new scheme this switches around: the necessary data is fetched by the ui as necessary. The UI independent display code is moved out of view.c/ui-curses.c into vis.c. The cell styles are now directly embedded into the Cell struct. New UI styles are introduced for: - status bar (focused / non-focused) - info message - window separator - EOF symbol You will have to update your color themes. The terminal output code is further abstracted into a generic ui-terminal.c part which keeps track of the whole in-memory cell matrix and #includes ui-terminal-curses.c for the actual terminal output. This architecture currently assumes that there are no overlapping windows. It will also allow non-curses based terminal user interfaces.
2017-03-05lua: fix more luacheck warningsMarc André Tanner1-1/+1
2017-01-05theme: pretend that specifying color numbers doesn't workS. Gilles1-16/+16
2016-12-07Move all lua related files to lua/ subfolderMarc André Tanner5-0/+123
Also remove the lexers sub directory from the Lua search path. As a result we attempt to open fewer files during startup: $ strace -e open -o log ./vis +q config.h && wc -l log In order to avoid having to modifiy all lexers which `require('lexer')` we instead place a symlink in the top level directory. $ ./configure --disable-lua $ rm -rf lua Should result in a source tree with most lua specifc functionality removed.