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 5baf8c2 commit 7f84d85Copy full SHA for 7f84d85
init.lua
@@ -83,7 +83,10 @@ I hope you enjoy your Neovim journey,
83
84
P.S. You can delete this when you're done too. It's your config now! :)
85
--]]
86
-
+vim.opt.tabstop = 2
87
+vim.opt.shiftwidth = 2
88
+vim.opt.expandtab = true
89
+vim.bo.softtabstop = 2
90
-- NOTE Adding a
91
92
vim.wo.relativenumber = true
lua/custom/plugins/init.lua
@@ -2,4 +2,12 @@
2
-- I promise not to create any merge conflicts in this directory :)
3
--
4
-- See the kickstart.nvim README for more information
5
-return {}
+return {
6
+ {
7
+ 'windwp/nvim-autopairs',
8
+ event = 'InsertEnter',
9
+ config = true,
10
+ -- use opts = {} for passing setup options
11
+ -- this is equalent to setup({}) function
12
+ },
13
+}
0 commit comments