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.

28 lines
526 B

  1. vim.g.mapleader = ','
  2. vim.o.clipboard = 'unnamedplus'
  3. vim.o.nohlsearch = true
  4. vim.o.incsearch = true
  5. vim.o.ignorecase = true
  6. vim.o.mouse = 'a'
  7. vim.o.smartcase = true
  8. vim.o.linebreak = true
  9. vim.o.noswapfile = true
  10. vim.o.nobackup = true
  11. vim.o.undodir = vim.fn.expand('~/.cache/nvim/undodir')
  12. vim.o.undofile = true
  13. vim.o.encoding = 'utf-8'
  14. vim.o.number = true
  15. vim.o.relativenumber = true
  16. vim.o.tabstop = 4
  17. vim.o.softtabstop = 4
  18. vim.o.expandtab = true
  19. vim.o.shiftwidth = 4
  20. vim.o.smarttab = true
  21. vim.o.formatoptions = 'tqj'