From 994cb1f91958a02415825a4dda74d18241096805 Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Sun, 4 Sep 2022 02:23:15 +0530 Subject: adding keymaps neovim config --- .config/nvim/lua/saumit/options.lua | 39 ------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .config/nvim/lua/saumit/options.lua (limited to '.config/nvim/lua/saumit') diff --git a/.config/nvim/lua/saumit/options.lua b/.config/nvim/lua/saumit/options.lua deleted file mode 100644 index b140c7c..0000000 --- a/.config/nvim/lua/saumit/options.lua +++ /dev/null @@ -1,39 +0,0 @@ -local options = { - number=true, -- Shows absolute linenumber - relativenumber=true, -- Shows linenumber relative to cursor - --combination of both^ for hybrid linenumber - showbreak="+++", -- wrap broken line prefix - textwidth=100, - numberwidth=4, - scrolloff=8, -- keeps cursor in middle of screen/scrolls 8lines in advance - mouse="a", -- enable mouse support - splitbelow=true, - splitright=true, - clipboard="unnamedplus", -- allows neovim to access system clipboard - --spaces/tabs/indents - softtabstop=4, -- No. of spaces per tab - shiftwidth=4, -- No. of auto-indent space - expandtab=true, -- spaces inplace of tabs - autoindent=true, -- New line copies indentation from past line - smartindent=true, -- Indents in accordance to the syntax/style of the code extension - --searches - ignorecase=true, -- Ignore case-sensitivity during search - smartcase=true, -- If searching capital search only capital - hlsearch=false, -- no perma highlight post search - incsearch=true, -- searches for strings incrementally - showmatch=true, -- Highlight matching braces - --git integration/lsp - --signcolumn=true, - --undo/backup - backup=false, - swapfile=false, - undodir=os.getenv("HOME") .. "/.config/nvim/undodir", - undofile=true -} ---forloop for table 'options' -for key, value in pairs(options) do - vim.opt[key] = value -end - ---to 'cw/'dw' a word containing '-' in between -vim.cmd [[set iskeyword+=-]] -- cgit v1.2.3