aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/config/options.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/config/options.lua')
-rw-r--r--nvim/lua/config/options.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/nvim/lua/config/options.lua b/nvim/lua/config/options.lua
index 37adc84..848966b 100644
--- a/nvim/lua/config/options.lua
+++ b/nvim/lua/config/options.lua
@@ -5,7 +5,6 @@ local g = vim.g
5opt.number = true 5opt.number = true
6opt.cursorline = true 6opt.cursorline = true
7opt.shortmess:append("I") 7opt.shortmess:append("I")
8opt.wrap = false
9opt.wildmenu = true 8opt.wildmenu = true
10opt.splitright = true 9opt.splitright = true
11opt.splitbelow = true 10opt.splitbelow = true
@@ -13,6 +12,11 @@ opt.signcolumn = "yes"
13opt.termguicolors = true 12opt.termguicolors = true
14opt.showcmd = false 13opt.showcmd = false
15 14
15-- Texte umbrechen
16opt.wrap = false
17opt.linebreak = true
18opt.breakindent = true
19
16-- Rechtschreibprüfung 20-- Rechtschreibprüfung
17opt.spelllang = { "de", "en" } 21opt.spelllang = { "de", "en" }
18opt.spell = false 22opt.spell = false
@@ -35,6 +39,9 @@ opt.listchars = {
35 precedes = "<", 39 precedes = "<",
36 nbsp = "+" 40 nbsp = "+"
37} 41}
42opt.showbreak = "↪ "
43
44-- Erlaube % für Winkelklammern
38opt.matchpairs:append("<:>") 45opt.matchpairs:append("<:>")
39 46
40-- automatisches Einlesen geänderter Dateien 47-- automatisches Einlesen geänderter Dateien