diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-04-23 11:04:19 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-04-23 11:04:19 +0200 |
| commit | 367e2f17233b1c19238fd77fde33c379eb0814be (patch) | |
| tree | 2fa3123358bb3d0e38d1b6d9b566a4dfb4b4bc2c /nvim/lua/config/options.lua | |
| parent | 2becff234c01252de2612445bf1c0fd307715fdc (diff) | |
| download | dotfiles-367e2f17233b1c19238fd77fde33c379eb0814be.tar.gz dotfiles-367e2f17233b1c19238fd77fde33c379eb0814be.tar.bz2 dotfiles-367e2f17233b1c19238fd77fde33c379eb0814be.zip | |
Neovim: Umbrucheinstellungen geändert und Unterstützung für Markdown
Diffstat (limited to 'nvim/lua/config/options.lua')
| -rw-r--r-- | nvim/lua/config/options.lua | 9 |
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 | |||
| 5 | opt.number = true | 5 | opt.number = true |
| 6 | opt.cursorline = true | 6 | opt.cursorline = true |
| 7 | opt.shortmess:append("I") | 7 | opt.shortmess:append("I") |
| 8 | opt.wrap = false | ||
| 9 | opt.wildmenu = true | 8 | opt.wildmenu = true |
| 10 | opt.splitright = true | 9 | opt.splitright = true |
| 11 | opt.splitbelow = true | 10 | opt.splitbelow = true |
| @@ -13,6 +12,11 @@ opt.signcolumn = "yes" | |||
| 13 | opt.termguicolors = true | 12 | opt.termguicolors = true |
| 14 | opt.showcmd = false | 13 | opt.showcmd = false |
| 15 | 14 | ||
| 15 | -- Texte umbrechen | ||
| 16 | opt.wrap = false | ||
| 17 | opt.linebreak = true | ||
| 18 | opt.breakindent = true | ||
| 19 | |||
| 16 | -- Rechtschreibprüfung | 20 | -- Rechtschreibprüfung |
| 17 | opt.spelllang = { "de", "en" } | 21 | opt.spelllang = { "de", "en" } |
| 18 | opt.spell = false | 22 | opt.spell = false |
| @@ -35,6 +39,9 @@ opt.listchars = { | |||
| 35 | precedes = "<", | 39 | precedes = "<", |
| 36 | nbsp = "+" | 40 | nbsp = "+" |
| 37 | } | 41 | } |
| 42 | opt.showbreak = "↪ " | ||
| 43 | |||
| 44 | -- Erlaube % für Winkelklammern | ||
| 38 | opt.matchpairs:append("<:>") | 45 | opt.matchpairs:append("<:>") |
| 39 | 46 | ||
| 40 | -- automatisches Einlesen geänderter Dateien | 47 | -- automatisches Einlesen geänderter Dateien |
