Skip to content

Commit 4423f8a

Browse files
author
arauto
committed
Habilitado plugins customizados
Configuração de tabulação. Habilitado o uso de Nerd fonts. Habilitado o uso de plugins customizados.
1 parent e1e896a commit 4423f8a

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

init.lua

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,12 @@ P.S. You can delete this when you're done too. It's your config now! :)
9090
vim.g.mapleader = ' '
9191
vim.g.maplocalleader = ' '
9292

93+
vim.opt.tabstop = 2
94+
vim.opt.shiftwidth = 2
95+
vim.opt.expandtab = true
96+
9397
-- Set to true if you have a Nerd Font installed and selected in the terminal
94-
vim.g.have_nerd_font = false
98+
vim.g.have_nerd_font = true
9599

96100
-- [[ Setting options ]]
97101
-- See `:help vim.opt`
@@ -100,6 +104,7 @@ vim.g.have_nerd_font = false
100104

101105
-- Make line numbers default
102106
vim.opt.number = true
107+
vim.opt.relativenumber = true
103108
-- You can also add relative line numbers, to help with jumping.
104109
-- Experiment for yourself to see if you like it!
105110
-- vim.opt.relativenumber = true
@@ -929,7 +934,7 @@ require('lazy').setup({
929934
--
930935
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
931936
-- For additional information, see `:help lazy.nvim-lazy.nvim-structuring-your-plugins`
932-
-- { import = 'custom.plugins' },
937+
{ import = 'custom.plugins' },
933938
}, {
934939
ui = {
935940
-- If you are using a Nerd Font: set icons to an empty table which will use the

0 commit comments

Comments
 (0)