chore: fix typos and such

This commit is contained in:
Mohammad Rafiq 2025-02-21 04:21:40 +08:00
parent 0139e77bde
commit dcc406577d
3 changed files with 7 additions and 3 deletions

View file

@ -1,7 +1,7 @@
-- Plugins -- Plugins
require("config.lazy") require("config.lazy")
vim.g.loaded_netrw = 1 -- Disables netrw vim.g.loaded_netrw = 1 -- Disables netrw
vim.g.loaded_newtwPlugin = 1 -- for nvim-tree vim.g.loaded_netrwPlugin = 1 -- for nvim-tree
-- Visual -- Visual
vim.opt.number = true -- Show line numbers vim.opt.number = true -- Show line numbers
@ -20,3 +20,4 @@ vim.opt.smartindent = false
vim.opt.termguicolors = true -- Enable true color support in the terminal vim.opt.termguicolors = true -- Enable true color support in the terminal
vim.opt.background = "dark" -- Or "light" depending on your preference vim.opt.background = "dark" -- Or "light" depending on your preference
vim.opt.signcolumn = "yes" -- Always show sign column (for diagnostics, etc.) vim.opt.signcolumn = "yes" -- Always show sign column (for diagnostics, etc.)
vim.opt.guifont = "Terminess Mono Nerd Font:h12"

View file

@ -6,6 +6,9 @@ return { -- Lua table
"nvim-tree/nvim-web-devicons", "nvim-tree/nvim-web-devicons",
}, },
config = function() config = function()
require("nvim-tree").setup {} require("nvim-tree").setup {
hijack_cursor = true, -- makes cursor stick to first char
}
end, end,
} }