diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-08-18 23:09:12 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-08-18 23:09:12 +0200 |
commit | f52dce93777c41671217ced2894c28d6da9114a0 (patch) | |
tree | bd32baeb5192aa138922fa54a2a75709cd3c812f /.config/nvim/lua/extra | |
parent | 91f8e6d9bccd4b24e6466cbb836157b670f44a38 (diff) |
Remove twilight
Diffstat (limited to '.config/nvim/lua/extra')
-rw-r--r-- | .config/nvim/lua/extra/twilight.lua | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/.config/nvim/lua/extra/twilight.lua b/.config/nvim/lua/extra/twilight.lua deleted file mode 100644 index b76563a..0000000 --- a/.config/nvim/lua/extra/twilight.lua +++ /dev/null @@ -1,30 +0,0 @@ -local M = {} -local Log = require "core.log" - -M.config = function() - local status_ok, twilight = pcall(require, "twilight") - if not status_ok then - Log:get_default().error "Failed to load twilight" - return - end - - twilight.setup { - dimming = { - alpha = 0.25, -- amount of dimming - -- we try to get the foreground from the highlight groups or fallback color - color = { "Normal", "#ffffff" }, - }, - context = 15, -- amount of lines we will try to show around the current line - -- treesitter is used to automatically expand the visible text, - -- but you can further control the types of nodes that should always be fully expanded - expand = { - "function", - "method", - "table", - "if_statement", - }, - exclude = {}, -- exclude these filetypes - } -end - -return M |