feat: Adding the TSI (Tree-Sitter Install) command, changing the ui2

setup to use floating messages instead of the cmdline output, cleanup of
plugin loading.
This commit is contained in:
2026-05-27 08:25:34 -05:00
parent a587e16f1f
commit 0ff4a94a04
5 changed files with 54 additions and 50 deletions

View File

@@ -21,6 +21,8 @@ vim.opt.listchars = 'tab:|·,trail:¬,extends:>,precedes:<,nbsp:+' -- Charact
vim.opt.mouse = 'a' -- Enable mouse mode
vim.opt.number = true -- Show the line number in the gutter.
vim.opt.relativenumber = true -- Relative line number
vim.opt.scrolloff = 8
vim.opt.sidescrolloff = 8
vim.opt.shiftround = true -- Round indentation to shiftwidth
vim.opt.shiftwidth = 4 -- Number of spaces a tab counts for when converting tabs to spaces
vim.opt.shortmess = 'at' -- Abbreviations and truncation of cmd messages
@@ -35,7 +37,7 @@ vim.opt.tabstop = 4 -- Setting t
vim.opt.termguicolors = true -- Enable the truecolor GUI colors in a terminal
vim.opt.undodir = os.getenv('HOME') .. '/.config/nvim/undodir' -- Set a specific undo file directory
vim.opt.undofile = true -- Enable undo files
vim.opt.updatetime = 50 -- Update time in milliseconds
vim.opt.updatetime = 300 -- Update time in milliseconds
vim.opt.wrap = false -- Do _not_ wrap lines
vim.g.netrw_liststyle = 3 -- Use the tree style display for netrw directory listings