From 97303b8a69f8a83661433d6b7fe5c7fe288f06fc Mon Sep 17 00:00:00 2001 From: pegasust Date: Mon, 15 Aug 2022 20:21:45 -0700 Subject: [PATCH] looks like it's win-term/wsl problem since it may have skipped couple frames --- neovim/init.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/neovim/init.lua b/neovim/init.lua index f2431c4..2ae5129 100644 --- a/neovim/init.lua +++ b/neovim/init.lua @@ -1,3 +1,4 @@ +local function_component = require "function_component" -- What: Mono-file nvim configuration file -- Why: Easy to see through everything without needing to navigate thru files -- Features: @@ -29,7 +30,6 @@ vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir" vim.opt.undofile = true vim.opt.completeopt = 'menuone,noselect' vim.opt.clipboard = "unnamedplus" -vim.opt.lazyredraw = true vim.g.mapleader = ' ' @@ -171,6 +171,10 @@ require('nvim-treesitter.configs').setup { }, }, }, + text = function () + + end(), + CanWinBeReordered, }