aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/options.lua
diff options
context:
space:
mode:
authorm0ntagur <leander@leander-scherer.de>2023-11-28 16:03:06 +0100
committerm0ntagur <leander@leander-scherer.de>2023-11-28 16:03:06 +0100
commitc37b9e5f00d51aa8625c51fe9fd3431fbb4c5ae4 (patch)
tree93649df96964709708d0c992dd7ddb44d3cdbabe /nvim/lua/options.lua
parent0b9f90ae245096be1691aecaf051ad8785072d9b (diff)
Diffstat (limited to 'nvim/lua/options.lua')
-rw-r--r--nvim/lua/options.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua
index 1988661..5b431d9 100644
--- a/nvim/lua/options.lua
+++ b/nvim/lua/options.lua
@@ -1,5 +1,4 @@
local options = {
- langmenu = 'en_US.UTF-8',
list = false,
backup = false, -- creates a backup file
clipboard = "unnamedplus", -- allows neovim to access the system clipboard
@@ -27,7 +26,7 @@ local options = {
shiftwidth = 2, -- the number of spaces inserted for each indentation
tabstop = 2, -- insert 2 spaces for a tab ⇥
cursorline = false, -- highlight the current line (disabled for now)
- number = true, -- set numbered lines
+ number = false, -- set numbered lines
relativenumber = false, -- set relative numbered lines
numberwidth = 4, -- set number column width to 2 (default 4)
wrap = false, -- display lines as one long lines
@@ -42,4 +41,3 @@ end
vim.wo.list = false
vim.cmd 'set whichwrap+=<,>,[,],h,l'
-vim.cmd 'lang en'