From 1cc677487661d7d7ae80aa7c43e11cf8c65c2094 Mon Sep 17 00:00:00 2001 From: NikhilTirunagiri Date: Wed, 26 Nov 2025 16:19:43 -0500 Subject: [PATCH 1/2] carbonfox theme --- init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index b98ffc6198a..c0f17c5b8c4 100644 --- a/init.lua +++ b/init.lua @@ -881,11 +881,11 @@ 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', + 'EdenEast/nightfox.nvim', -- 'folke/tokyonight.nvim', priority = 1000, -- Make sure to load this before all the other start plugins. config = function() ---@diagnostic disable-next-line: missing-fields - require('tokyonight').setup { + require('nightfox').setup { styles = { comments = { italic = false }, -- Disable italics in comments }, @@ -894,7 +894,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 'tokyonight-night' + vim.cmd.colorscheme 'carbonfox' end, }, From 034b65a729f29fd2d6320f8bc2218b3f82be64e9 Mon Sep 17 00:00:00 2001 From: NikhilTirunagiri Date: Wed, 26 Nov 2025 16:36:51 -0500 Subject: [PATCH 2/2] kj keymap to switch between insert and normal mode --- init.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/init.lua b/init.lua index c0f17c5b8c4..05efa637c01 100644 --- a/init.lua +++ b/init.lua @@ -98,11 +98,18 @@ vim.g.have_nerd_font = false -- NOTE: You can change these options as you wish! -- For more options, you can see `:help option-list` +-- keymap for switching between normal and insert mode using kj +vim.keymap.set('i', 'kj', '', { noremap = true, silent = true }) + +--kj + -- Make line numbers default vim.o.number = true +vim.o.relativenumber = true -- You can also add relative line numbers, to help with jumping. -- Experiment for yourself to see if you like it! -- vim.o.relativenumber = true +-- -- Enable mouse mode, can be useful for resizing splits for example! vim.o.mouse = 'a'