diff options
| author | pml68 <tutorialmester@gmail.com> | 2024-05-29 19:56:25 +0200 |
|---|---|---|
| committer | pml68 <tutorialmester@gmail.com> | 2024-05-29 19:56:25 +0200 |
| commit | 0fd5b619dae3952fe732138b13a136a62f0a0022 (patch) | |
| tree | 30d8366f572101a9f11ce8e69b6d0d63dd305681 /lua | |
| parent | feat: disable cursorline (diff) | |
| download | nvim-0fd5b619dae3952fe732138b13a136a62f0a0022.tar.gz | |
feat: set conceallevel to 2 and mouse to a
Diffstat (limited to '')
| -rw-r--r-- | lua/pml68/settings.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lua/pml68/settings.lua b/lua/pml68/settings.lua index d6ead6c..4aa6a6f 100644 --- a/lua/pml68/settings.lua +++ b/lua/pml68/settings.lua @@ -1,12 +1,14 @@ vim.o.rnu = true vim.o.nu = true +vim.o.conceallevel = 2 + vim.o.shiftwidth = 2 vim.o.tabstop = 2 vim.o.softtabstop = 2 vim.o.expandtab = true -vim.o.mouse = "" +vim.o.mouse = "a" vim.o.smartindent = true |
