We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fadcb82 commit 1297339Copy full SHA for 1297339
lua/user/options.lua
@@ -5,6 +5,9 @@ vim.opt.cursorline = true
5
vim.opt.fileencoding = "utf-8"
6
vim.opt.foldmethod = "indent"
7
8
+-- needed for 24-bit colors.
9
+vim.opt.termguicolors = true
10
+
11
-- no need of any backup file.
12
vim.opt.backup = false
13
vim.opt.writebackup = false
@@ -17,4 +20,4 @@ vim.opt.shiftwidth = 2
17
20
vim.opt.expandtab = true
18
21
vim.opt.smartindent = true
19
22
--- vim.opt.completeopt = { "menuone", "noselect" }
23
+-- vim.opt.completeopt = { "menuone", "noselect" }
lua/user/packer.lua
@@ -45,6 +45,7 @@ return require('packer').startup(function(use)
45
})
46
end
47
}
48
+ -- Plugin for auto pairs.
49
use {
50
"windwp/nvim-autopairs",
51
event = "InsertEnter",
0 commit comments