From 11ebaeac96e76d6ef7a5f642525ddc0759451069 Mon Sep 17 00:00:00 2001 From: jimrothstein Date: Mon, 25 Sep 2023 19:45:52 -0700 Subject: [PATCH] wip --- init.lua | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/init.lua b/init.lua index 90b719f2..54c57c09 100644 --- a/init.lua +++ b/init.lua @@ -1,5 +1,14 @@ --[[ +TODO: +- enhance/fix/understand gza: 2023-09-25 + - Problem seems to be OLD code in ~/.local/share ... + + - gza is part of mini.surround (mini.nvim) ? + - OR, is lazy lazy.nvim loading a plugin? + - verbose nmap gza returns deep in kickstart ... lazy ... lazy.nvim .. core + - disable:vim.g.minisurround_disable: true + ===================================================================== ==================== READ THIS BEFORE CONTINUING ==================== ===================================================================== @@ -46,6 +55,8 @@ P.S. You can delete this when you're done too. It's your config now :) vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' +vim.g.minisurround_disable=true + -- for now turn on LIGHT vim.cmd 'set background=light' @@ -146,18 +157,6 @@ require('lazy').setup({ }, }, - { - -- jr removed: - -- Theme inspired by Atom - --[[ - -- TOO DARK ! - 'navarasu/onedark.nvim', - priority = 1000, - config = function() - vim.cmd.colorscheme 'onedark' - end, - --]] - }, -- add gruvbox { 'ellisonleao/gruvbox.nvim' }, @@ -348,6 +347,8 @@ vim.keymap.set('n', 'k', "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = tr vim.keymap.set('n', 'j', "v:count == 0 ? 'gj' : 'j'", { expr = true, silent = true }) vim.keymap.set('n', 'ck', ':e ~/.config/kickstart/init.lua', { desc = 'Config Kickstart' }) +vim.keymap.set('n', 'tn', ':e ~/code/docs/tech_notes/300_tech_notes.qmd', { desc = 'Tech Notes' }) +vim.keymap.set('n', 'mln', ':e ~/code/docs/tech_notes/500_ML_Notes.qmd', { desc = 'ML Notes' }) vim.keymap.set('n', 'bw', 'i**Ea**w', { desc = "[B]old [W]ord" }) -- insert # --------... vim.keymap.set("n", "ic", "yypVr-I# ", { desc = "[ic]insert comment line"})