Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-- Appearance Settings
|
|
|
|
-- Set command-line height
|
|
vim.opt.cmdheight = 2
|
|
|
|
-- Tab and indent settings
|
|
vim.opt.expandtab = true
|
|
vim.opt.shiftwidth = 2
|
|
vim.opt.tabstop = 2
|
|
|
|
-- Status line
|
|
vim.opt.laststatus = 2
|
|
|
|
-- Material theme style
|
|
vim.opt.termguicolors = true
|
|
|
|
-- Colorscheme settings
|
|
vim.opt.background = "dark"
|
|
|
|
vim.cmd.colorscheme "catppuccin"
|
|
vim.wo.relativenumber = true
|
|
vim.wo.number = true
|
|
|