From 6ad9ebb4d05d0f5de73a76b81464db2b673251d0 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Fri, 7 Apr 2023 18:06:20 +0100 Subject: Adds first neovim config for several years I copied ThePrimeagen setting up neovim based on his repository at https://github.com/ThePrimeagen/init.lua. The video itself is at https://www.youtube.com/watch?v=w7i4amO_zaE. I tried following each step based on the video, but I for some reason autocomplete did not work properly after a while. So I cloned his repo and adapted it to some extent to make it more in line with what I need. This is an early state, but autocomplete works. There is much to do to mirror my vimrc, if I am going to go down that route. --- nvim/after/plugin/zenmode.lua | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 nvim/after/plugin/zenmode.lua (limited to 'nvim/after/plugin/zenmode.lua') diff --git a/nvim/after/plugin/zenmode.lua b/nvim/after/plugin/zenmode.lua new file mode 100644 index 0000000..753fbf8 --- /dev/null +++ b/nvim/after/plugin/zenmode.lua @@ -0,0 +1,30 @@ + +vim.keymap.set("n", "zz", function() + require("zen-mode").setup { + window = { + width = 90, + options = { } + }, + } + require("zen-mode").toggle() + vim.wo.wrap = false + vim.wo.number = true + vim.wo.rnu = true + ColorMyPencils() +end) + + +vim.keymap.set("n", "zZ", function() + require("zen-mode").setup { + window = { + width = 80, + options = { } + }, + } + require("zen-mode").toggle() + vim.wo.wrap = false + vim.wo.number = false + vim.wo.rnu = false + vim.opt.colorcolumn = "0" + ColorMyPencils() +end) -- cgit v1.2.3