aboutsummaryrefslogtreecommitdiff
path: root/lua/pml68
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2024-05-29 19:56:25 +0200
committerpml68 <tutorialmester@gmail.com>2024-05-29 19:56:25 +0200
commit0fd5b619dae3952fe732138b13a136a62f0a0022 (patch)
tree30d8366f572101a9f11ce8e69b6d0d63dd305681 /lua/pml68
parentfeat: disable cursorline (diff)
downloadnvim-0fd5b619dae3952fe732138b13a136a62f0a0022.tar.gz
feat: set conceallevel to 2 and mouse to a
Diffstat (limited to 'lua/pml68')
-rw-r--r--lua/pml68/settings.lua4
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