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
|
||||
require("config.lazy")
|
||||
vim.g.loaded_netrw = 1 -- Disables netrw
|
||||
vim.g.loaded_newtwPlugin = 1 -- for nvim-tree
|
||||
vim.g.loaded_netrwPlugin = 1 -- for nvim-tree
|
||||
|
||||
-- Visual
|
||||
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.background = "dark" -- Or "light" depending on your preference
|
||||
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",
|
||||
},
|
||||
config = function()
|
||||
require("nvim-tree").setup {}
|
||||
require("nvim-tree").setup {
|
||||
hijack_cursor = true, -- makes cursor stick to first char
|
||||
|
||||
}
|
||||
end,
|
||||
}
|
||||
|
|
|
@ -11,4 +11,4 @@
|
|||
directory = /appdata
|
||||
directory = /storage/emulated/0/Obsidian Vaults/second-brain
|
||||
[pull]
|
||||
rebase = false
|
||||
rebase = false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue