neovim

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 9d86804a98b2bcee69074cbadc337c09e0982127
parent c8c68fd2f8969743cbee193d991c3c89e605c4c7
Author: bdmfegys@duck.com <bdmfegys@duck.com>
Date:   Sun,  5 May 2024 13:19:17 -0400

options.lua: added system clipboard as register

Diffstat:
Mlua/options.lua | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/lua/options.lua b/lua/options.lua @@ -5,6 +5,9 @@ vim.g.maplocalleader = "\\" local opt = vim.opt vim.g.autoformat = false +-- clipboard +opt.clipboard:append("unnamedplus") + -- indentation & tabs opt.tabstop = 2 -- space count for tabs opt.shiftwidth = 2 -- indent width