base setup and fugitive config

This commit is contained in:
Lorne Stalker 2023-08-13 12:44:50 +01:00
parent 98ad2ee32a
commit fa0f5828c3
8 changed files with 42 additions and 101 deletions

View file

@ -201,6 +201,7 @@ require('lazy').setup({
-- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart
-- These are some example plugins that I've included in the kickstart repository.
-- Uncomment any of the lines below to enable them.
require 'lornest.plugins.fugitive',
-- require 'kickstart.plugins.autoformat',
-- require 'kickstart.plugins.debug',
@ -218,10 +219,11 @@ require('lazy').setup({
-- NOTE: You can change these options as you wish!
-- Set highlight on search
vim.o.hlsearch = false
vim.o.hlsearch = true
-- Make line numbers default
vim.wo.number = true
vim.o.relativenumber = true
-- Enable mouse mode
vim.o.mouse = 'a'