Files
dotfiles/nvim/lua/settings.lua
Thomas Naderer 9a589412c8 NVIM
- adapting Transparency from Terminal
YAZI
    - Keymaps for work related folders
ZSH
    - updated aliases
2025-01-03 13:13:25 +01:00

16 lines
391 B
Lua

-- Global settings
vim.opt.tabstop = 4 -- Number of spaces that a <Tab> counts for
vim.opt.shiftwidth = 4 -- Number of spaces for indentation
vim.opt.expandtab = true -- Use spaces instead of tabs
-- Coloscheme
vim.cmd [[colorscheme tokyonight]]
vim.cmd [[set spelllang=en]]
vim.cmd([[
highlight Normal ctermbg=none guibg=none
highlight NonText ctermbg=none guibg=none
]])