From 7fc2f7b0ca2b25b1ba0d4b1ecffc369efd3bfb1d Mon Sep 17 00:00:00 2001 From: Noah <73550955+noahapursell@users.noreply.github.com> Date: Sat, 18 May 2024 15:06:38 -0500 Subject: [PATCH 1/4] Update init.lua to make esc jj --- init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/init.lua b/init.lua index 88658ef3033..9a107b1166b 100644 --- a/init.lua +++ b/init.lua @@ -189,6 +189,10 @@ vim.keymap.set('n', '', '', { desc = 'Move focus to the left wind vim.keymap.set('n', '', '', { desc = 'Move focus to the right window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the lower window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) +-- NOAH +-- Remap 'jj' to 'Esc' in insert mode +vim.api.nvim_set_keymap('i', 'jj', '', { noremap = true, silent = true }) + -- [[ Basic Autocommands ]] -- See `:help lua-guide-autocommands` From eee9d0635e59cf0019bdd4b14bec72573e19930a Mon Sep 17 00:00:00 2001 From: Noah <73550955+noahapursell@users.noreply.github.com> Date: Sat, 18 May 2024 15:08:32 -0500 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f445b65ecd5..923ccbf07cd 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ fork to your machine using one of the commands below, depending on your OS.
Linux and Mac ```sh -git clone https://github.com/nvim-lua/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim +git clone https://github.com/noahapursell/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim ```
From c28a4ba2a73ca9abfb785bddc3bab226a8a294cf Mon Sep 17 00:00:00 2001 From: Noah <73550955+noahapursell@users.noreply.github.com> Date: Sat, 18 May 2024 15:18:18 -0500 Subject: [PATCH 3/4] Update init.lua --- init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/init.lua b/init.lua index 9a107b1166b..f597816a0b0 100644 --- a/init.lua +++ b/init.lua @@ -192,6 +192,7 @@ vim.keymap.set('n', '', '', { desc = 'Move focus to the upper win -- NOAH -- Remap 'jj' to 'Esc' in insert mode vim.api.nvim_set_keymap('i', 'jj', '', { noremap = true, silent = true }) +require'lspconfig'.pyright.setup{} -- [[ Basic Autocommands ]] From b9216a4f3cf0577cc2dabfd4ef1df19e3b152f82 Mon Sep 17 00:00:00 2001 From: noahapursell Date: Tue, 25 Nov 2025 16:17:46 -0600 Subject: [PATCH 4/4] wip --- init.lua | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/init.lua b/init.lua index f597816a0b0..4a71d126850 100644 --- a/init.lua +++ b/init.lua @@ -91,7 +91,7 @@ vim.g.mapleader = ' ' vim.g.maplocalleader = ' ' -- Set to true if you have a Nerd Font installed and selected in the terminal -vim.g.have_nerd_font = false +vim.g.have_nerd_font = true -- [[ Setting options ]] -- See `:help vim.opt` @@ -102,7 +102,7 @@ vim.g.have_nerd_font = false vim.opt.number = true -- You can also add relative line numbers, to help with jumping. -- Experiment for yourself to see if you like it! --- vim.opt.relativenumber = true +vim.opt.relativenumber = true -- Enable mouse mode, can be useful for resizing splits for example! vim.opt.mouse = 'a' @@ -192,8 +192,7 @@ vim.keymap.set('n', '', '', { desc = 'Move focus to the upper win -- NOAH -- Remap 'jj' to 'Esc' in insert mode vim.api.nvim_set_keymap('i', 'jj', '', { noremap = true, silent = true }) -require'lspconfig'.pyright.setup{} - +require('lspconfig').pyright.setup {} -- [[ Basic Autocommands ]] -- See `:help lua-guide-autocommands` @@ -882,7 +881,7 @@ require('lazy').setup({ -- require 'kickstart.plugins.indent_line', -- require 'kickstart.plugins.lint', -- require 'kickstart.plugins.autopairs', - -- require 'kickstart.plugins.neo-tree', + require 'kickstart.plugins.neo-tree', -- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommend keymaps -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`