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
```
diff --git a/init.lua b/init.lua
index 88658ef3033..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'
@@ -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 })
+require('lspconfig').pyright.setup {}
-- [[ Basic Autocommands ]]
-- See `:help lua-guide-autocommands`
@@ -877,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`