summaryrefslogtreecommitdiff
path: root/nvim/lua/options.lua
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2024-07-27 21:41:38 +0000
committerGitHub <noreply@github.com>2024-07-27 21:41:38 +0000
commitef3c406c013d8b751a02a5335a771cba87d1d3a3 (patch)
tree2aea477261284cd19d735fd008425b13374dbf9e /nvim/lua/options.lua
parent280b23cb2a649c9af01befabab86d910c54085fc (diff)
Delete nvim directory
Diffstat (limited to 'nvim/lua/options.lua')
-rw-r--r--nvim/lua/options.lua19
1 files changed, 0 insertions, 19 deletions
diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua
deleted file mode 100644
index 994ed77..0000000
--- a/nvim/lua/options.lua
+++ /dev/null
@@ -1,19 +0,0 @@
-vim.g.mapleader = " "
-
-vim.o.clipboard = "unnamedplus"
-
-vim.o.number = true
-
-vim.o.expandtab = true
-
-vim.o.shiftwidth = 2
-
-vim.o.smartindent = true
-
-vim.o.tabstop = 2
-
-vim.o.softtabstop = 2
-
-vim.opt.shortmess:append "sI"
-
-vim.opt.whichwrap:append "<>[]hl"