From 284b2baf42cce8d6aef4c76058c3af21d3da8aac Mon Sep 17 00:00:00 2001 From: Ruthenic Date: Fri, 24 Dec 2021 22:23:52 -0500 Subject: [PATCH] Make my pretty comment not get snapped --- lua/config.lua | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lua/config.lua b/lua/config.lua index fc585d6..d90b52a 100644 --- a/lua/config.lua +++ b/lua/config.lua @@ -1,14 +1,16 @@ -- plugin-independent configuration, such as autocmds local set = vim.opt +-- stylua: ignore start -- Set some stuff up like clipboard and mouse -set.termguicolors = true -- Needed for literally any modern colorscheme -set.mouse = 'a' -- Mouse support +set.termguicolors = true -- Needed for literally any modern colorscheme +set.mouse = 'a' -- Mouse support set.clipboard = 'unnamedplus' -- Use X11 clipboard -set.pumheight = 5 -- Uhh whatever the fuck this does -set.number = true -- Show line numbers -set.tabstop = 4 -- Set up tabs -set.shiftwidth = 4 -- See above +set.pumheight = 5 -- Uhh whatever the fuck this does +set.number = true -- Show line numbers +set.tabstop = 4 -- Set up tabs +set.shiftwidth = 4 -- See above set.cursorline = false +--stylua: ignore end -- Autocmds