chore: fix typos and such
This commit is contained in:
parent
0139e77bde
commit
dcc406577d
3 changed files with 7 additions and 3 deletions
|
@ -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"
|
||||||
|
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue