23 lines
695 B
Lua
23 lines
695 B
Lua
![]() |
-- 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
|
||
|
vim.o.termguicolors = true -- Enable 24-bit RGB colors
|
||
|
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
|
||
|
}
|
||
|
}
|
||
|
})
|