Visual Padding

This commit is contained in:
Flavio Oliveira 2023-10-29 12:11:34 +00:00
parent a3f3e08f34
commit bb776e016e
1 changed files with 5 additions and 0 deletions

View File

@ -271,6 +271,11 @@ vim.o.completeopt = 'menuone,noselect'
-- NOTE: You should make sure your terminal supports this -- NOTE: You should make sure your terminal supports this
vim.o.termguicolors = true vim.o.termguicolors = true
-- Enhancement: Visual Padding in Neovim
-- The following settings are used to create a visual "padding" effect around the text arena
vim.wo.number = true -- Enable line numbering for a left padding effect
vim.wo.signcolumn = 'yes' -- Ensure the sign column is always present for consistent padding
-- [[ Basic Keymaps ]] -- [[ Basic Keymaps ]]
-- Keymaps for better default experience -- Keymaps for better default experience