2025-09-16 01:01:02 +02:00
|
|
|
-- Basic settings
|
|
|
|
vim.o.number = true -- Enable line numbers
|
|
|
|
vim.o.tabstop = 2 -- Number of spaces a tab represents
|
|
|
|
vim.o.shiftwidth = 2 -- Number of spaces for each indentation
|
|
|
|
vim.o.expandtab = true -- Convert tabs to spaces
|
|
|
|
vim.o.smartindent = true -- Automatically indent new lines
|
|
|
|
vim.o.wrap = true -- Disable line wrapping
|
|
|
|
vim.o.cursorline = true -- Highlight the current line
|
2025-09-23 02:43:16 +02:00
|
|
|
-- vim.o.termguicolors = true -- Enable 24-bit RGB colors
|
2025-09-16 01:01:02 +02:00
|
|
|
vim.o.clipboard = "unnamedplus"
|
|
|
|
|
|
|
|
-- Syntax highlighting and filetype plugins
|
|
|
|
vim.cmd('syntax enable')
|
|
|
|
vim.cmd('filetype plugin indent on')
|
|
|
|
|
|
|
|
require('neo-tree').setup({
|
|
|
|
filesystem = {
|
|
|
|
filtered_items = {
|
|
|
|
hide_dotfiles = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|