diff options
| author | ngharo <root@ngha.ro> | 2025-12-10 20:33:36 -0600 |
|---|---|---|
| committer | ngharo <root@ngha.ro> | 2025-12-10 20:33:36 -0600 |
| commit | 7041a218d5cdcb6131697078e4422deb457c6cf0 (patch) | |
| tree | b19f3f78f5bc25040dcb684ecd6afd642a1dc30d /lua/core | |
| parent | 66c9b0f63220d6e7f6e2e858e80f3cb83539cd50 (diff) | |
| download | nvim-main.tar.xz nvim-main.zip | |
Diffstat (limited to 'lua/core')
| -rw-r--r-- | lua/core/options.lua | 4 | ||||
| -rw-r--r-- | lua/core/plugins.lua | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lua/core/options.lua b/lua/core/options.lua index 110c46a..de4903f 100644 --- a/lua/core/options.lua +++ b/lua/core/options.lua @@ -17,3 +17,7 @@ vim.opt.relativenumber = true vim.opt.signcolumn = 'yes' vim.opt.cursorline = false vim.opt.listchars = 'trail:·,nbsp:◇,tab:→ ,extends:▸,precedes:◂,eol:⁋' +vim.diagnostic.config({ + -- virtual_lines = true, + virtual_text = true, +}) diff --git a/lua/core/plugins.lua b/lua/core/plugins.lua index 3fcbdec..faeae4a 100644 --- a/lua/core/plugins.lua +++ b/lua/core/plugins.lua @@ -5,7 +5,7 @@ if not vim.loop.fs_stat(lazypath) then "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", - "--branch=stable", -- latest stable release + "--branch=stable", lazypath, }) end |
