From 1a24ff223c230d4f4f041d29e00a010ecf1fada5 Mon Sep 17 00:00:00 2001 From: B3H01D3R Security <58199755+powershellbreakfast@users.noreply.github.com> Date: Sat, 18 May 2024 06:33:48 -0400 Subject: [PATCH 1/5] Update init.lua with minor changes to the defaults Enable Nerd font Disable Arrow Keys --- init.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/init.lua b/init.lua index 88658ef3033..ac8676ef785 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` @@ -176,10 +176,10 @@ vim.keymap.set('n', 'q', vim.diagnostic.setloclist, { desc = 'Open diagn vim.keymap.set('t', '', '', { desc = 'Exit terminal mode' }) -- TIP: Disable arrow keys in normal mode --- vim.keymap.set('n', '', 'echo "Use h to move!!"') --- vim.keymap.set('n', '', 'echo "Use l to move!!"') --- vim.keymap.set('n', '', 'echo "Use k to move!!"') --- vim.keymap.set('n', '', 'echo "Use j to move!!"') +vim.keymap.set('n', '', 'echo "Use h to move!!"') +vim.keymap.set('n', '', 'echo "Use l to move!!"') +vim.keymap.set('n', '', 'echo "Use k to move!!"') +vim.keymap.set('n', '', 'echo "Use j to move!!"') -- Keybinds to make split navigation easier. -- Use CTRL+ to switch between windows From 3530e420d77db89b7546beb625e2dda693996deb Mon Sep 17 00:00:00 2001 From: B3H01D3R Security <58199755+powershellbreakfast@users.noreply.github.com> Date: Mon, 23 Sep 2024 14:27:11 -0400 Subject: [PATCH 2/5] Update init.lua --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index ac8676ef785..3ca10149d9b 100644 --- a/init.lua +++ b/init.lua @@ -778,13 +778,13 @@ require('lazy').setup({ -- change the command in the config to whatever the name of that colorscheme is. -- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. - 'folke/tokyonight.nvim', + 'Mofiqul/dracula.nvim', priority = 1000, -- Make sure to load this before all the other start plugins. init = function() -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'tokyonight-night' + vim.cmd.colorscheme 'dracula' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none' From 44b69cf255e02ff637e241d72fb51b7e21d1488a Mon Sep 17 00:00:00 2001 From: B3H01D3R Security <58199755+powershellbreakfast@users.noreply.github.com> Date: Fri, 13 Dec 2024 17:38:01 -0500 Subject: [PATCH 3/5] Update init.lua --- init.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/init.lua b/init.lua index 3ca10149d9b..ec5b09ea43a 100644 --- a/init.lua +++ b/init.lua @@ -176,10 +176,10 @@ vim.keymap.set('n', 'q', vim.diagnostic.setloclist, { desc = 'Open diagn vim.keymap.set('t', '', '', { desc = 'Exit terminal mode' }) -- TIP: Disable arrow keys in normal mode -vim.keymap.set('n', '', 'echo "Use h to move!!"') -vim.keymap.set('n', '', 'echo "Use l to move!!"') -vim.keymap.set('n', '', 'echo "Use k to move!!"') -vim.keymap.set('n', '', 'echo "Use j to move!!"') +-- vim.keymap.set('n', '', 'echo "Use h to move!!"') +-- vim.keymap.set('n', '', 'echo "Use l to move!!"') +-- vim.keymap.set('n', '', 'echo "Use k to move!!"') +-- vim.keymap.set('n', '', 'echo "Use j to move!!"') -- Keybinds to make split navigation easier. -- Use CTRL+ to switch between windows @@ -784,7 +784,7 @@ require('lazy').setup({ -- Load the colorscheme here. -- Like many other themes, this one has different styles, and you could load -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. - vim.cmd.colorscheme 'dracula' + vim.cmd.colorscheme 'sorbet' -- You can configure highlights by doing something like: vim.cmd.hi 'Comment gui=none' From ad1ef1aa15e2c6d563c847fa7d9863fcf2a71194 Mon Sep 17 00:00:00 2001 From: B3H01D3R Security <58199755+powershellbreakfast@users.noreply.github.com> Date: Sat, 4 Jan 2025 13:43:09 -0500 Subject: [PATCH 4/5] Update README.md --- README.md | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index f445b65ecd5..a58b47d1225 100644 --- a/README.md +++ b/README.md @@ -55,19 +55,10 @@ Neovim's configurations are located under the following paths, depending on your so that you have your own copy that you can modify, then install by cloning the fork to your machine using one of the commands below, depending on your OS. -> **NOTE** -> Your fork's url will be something like this: -> `https://github.com//kickstart.nvim.git` - -#### Clone kickstart.nvim -> **NOTE** -> If following the recommended step above (i.e., forking the repo), replace -> `nvim-lua` with `` in the commands below -
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/powershellbreakfast/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim ```
@@ -77,13 +68,13 @@ git clone https://github.com/nvim-lua/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HO If you're using `cmd.exe`: ``` -git clone https://github.com/nvim-lua/kickstart.nvim.git %userprofile%\AppData\Local\nvim\ +git clone https://github.com/powershellbreakfast/kickstart.nvim.git %userprofile%\AppData\Local\nvim\ ``` If you're using `powershell.exe` ``` -git clone https://github.com/nvim-lua/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\ +git clone https://github.com/powershellbreakfast/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\ ``` @@ -135,8 +126,8 @@ examples of adding popularly requested plugins. same functionality is available here: * [kickstart-modular.nvim](https://github.com/dam9000/kickstart-modular.nvim) * Discussions on this topic can be found here: - * [Restructure the configuration](https://github.com/nvim-lua/kickstart.nvim/issues/218) - * [Reorganize init.lua into a multi-file setup](https://github.com/nvim-lua/kickstart.nvim/pull/473) + * [Restructure the configuration](https://github.com/powershellbreakfast/kickstart.nvim/issues/218) + * [Reorganize init.lua into a multi-file setup](https://github.com/powershellbreakfast/kickstart.nvim/pull/473) ### Install Recipes From 6e69aa737a47982011b199a5742cb6e129ce0ff5 Mon Sep 17 00:00:00 2001 From: Beholder Security <58199755+beholdersecurity@users.noreply.github.com> Date: Fri, 9 Jan 2026 07:42:16 -0500 Subject: [PATCH 5/5] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a58b47d1225..1f013637681 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ fork to your machine using one of the commands below, depending on your OS.
Linux and Mac ```sh -git clone https://github.com/powershellbreakfast/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim +git clone https://github.com/beholdersecurity/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim ```
@@ -68,13 +68,13 @@ git clone https://github.com/powershellbreakfast/kickstart.nvim.git "${XDG_CONFI If you're using `cmd.exe`: ``` -git clone https://github.com/powershellbreakfast/kickstart.nvim.git %userprofile%\AppData\Local\nvim\ +git clone https://github.com/beholdersecurity/kickstart.nvim.git %userprofile%\AppData\Local\nvim\ ``` If you're using `powershell.exe` ``` -git clone https://github.com/powershellbreakfast/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\ +git clone https://github.com/beholdersecurity/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\ ``` @@ -126,8 +126,8 @@ examples of adding popularly requested plugins. same functionality is available here: * [kickstart-modular.nvim](https://github.com/dam9000/kickstart-modular.nvim) * Discussions on this topic can be found here: - * [Restructure the configuration](https://github.com/powershellbreakfast/kickstart.nvim/issues/218) - * [Reorganize init.lua into a multi-file setup](https://github.com/powershellbreakfast/kickstart.nvim/pull/473) + * [Restructure the configuration](https://github.com/beholdersecurity/kickstart.nvim/issues/218) + * [Reorganize init.lua into a multi-file setup](https://github.com/beholdersecurity/kickstart.nvim/pull/473) ### Install Recipes