This commit is contained in:
juanito87 2024-04-22 23:23:19 -03:00
parent 7edfc147ab
commit 9943508270
No known key found for this signature in database
GPG Key ID: EAB042894FD44AFD
1 changed files with 3 additions and 2 deletions

View File

@ -65,7 +65,7 @@ Kickstart Guide:
MOST IMPORTANTLY, we provide a keymap "<space>sh" to [s]earch the [h]elp documentation, MOST IMPORTANTLY, we provide a keymap "<space>sh" to [s]earch the [h]elp documentation,
which is very useful when you're not exactly sure of what you're looking for. which is very useful when you're not exactly sure of what you're looking for.
g
I have left several `:help X` comments throughout the init.lua I have left several `:help X` comments throughout the init.lua
These are hints about where to find more information about the relevant settings, These are hints about where to find more information about the relevant settings,
plugins or Neovim features used in Kickstart. plugins or Neovim features used in Kickstart.
@ -95,7 +95,8 @@ vim.g.have_nerd_font = true
-- [[ Global variables ]] -- [[ Global variables ]]
Autocmd = vim.api.nvim_create_autocmd Autocmd = vim.api.nvim_create_autocmd
Fugitive = vim.api.nvim_create_augroup('juanito_Fugitive', {}) Augroup = vim.api.nvim_create_augroup
Fugitive = vim.api.nvim_create_augroup('Fugitive', {})
-- [[ Setting options ]] -- [[ Setting options ]]
require 'options' require 'options'