Skip to content

Commit 1297339

Browse files
committed
termguicolors 24 bit colors has been added...
1 parent fadcb82 commit 1297339

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

lua/user/options.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ vim.opt.cursorline = true
55
vim.opt.fileencoding = "utf-8"
66
vim.opt.foldmethod = "indent"
77

8+
-- needed for 24-bit colors.
9+
vim.opt.termguicolors = true
10+
811
-- no need of any backup file.
912
vim.opt.backup = false
1013
vim.opt.writebackup = false
@@ -17,4 +20,4 @@ vim.opt.shiftwidth = 2
1720
vim.opt.expandtab = true
1821
vim.opt.smartindent = true
1922

20-
-- vim.opt.completeopt = { "menuone", "noselect" }
23+
-- vim.opt.completeopt = { "menuone", "noselect" }

lua/user/packer.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ return require('packer').startup(function(use)
4545
})
4646
end
4747
}
48+
-- Plugin for auto pairs.
4849
use {
4950
"windwp/nvim-autopairs",
5051
event = "InsertEnter",

0 commit comments

Comments
 (0)