From 08d77ce84506e4cd45ab7d4e00945b9b4e308625 Mon Sep 17 00:00:00 2001 From: David Francis Date: Fri, 23 Jun 2023 18:26:29 +0100 Subject: [PATCH] Set scrolloff --- init.lua | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/init.lua b/init.lua index 96e76e79..d83cb5c5 100644 --- a/init.lua +++ b/init.lua @@ -70,6 +70,10 @@ require('lazy').setup({ }, }, + { + 'github/copilot.vim', + }, + -- Useful plugin to show you pending keybinds. { 'folke/which-key.nvim', opts = {} }, { @@ -93,16 +97,7 @@ require('lazy').setup({ }, }, - -- { - -- -- Theme inspired by Atom - -- 'navarasu/onedark.nvim', - -- priority = 1000, - -- config = function() - -- vim.cmd.colorscheme 'onedark' - -- end, - -- }, - - { + { "catppuccin/nvim", name = "catppuccin", priority = 1000, @@ -224,6 +219,8 @@ vim.o.tabstop = 4 vim.o.shiftwidth = 4 vim.o.expandtab = true +vim.o.scrolloff = 8 + -- [[ Basic Keymaps ]] -- Keymaps for better default experience