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.

23 lines
400 B

  1. -- Appearance Settings
  2. -- Set command-line height
  3. vim.opt.cmdheight = 2
  4. -- Tab and indent settings
  5. vim.opt.expandtab = true
  6. vim.opt.shiftwidth = 2
  7. vim.opt.tabstop = 2
  8. -- Status line
  9. vim.opt.laststatus = 2
  10. -- Material theme style
  11. vim.opt.termguicolors = true
  12. -- Colorscheme settings
  13. vim.opt.background = "dark"
  14. vim.cmd.colorscheme "catppuccin"
  15. vim.wo.relativenumber = true
  16. vim.wo.number = true