nvim

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

options.lua (159B)


      1 local opt = vim.opt
      2 
      3 opt.tabstop = 4
      4 opt.shiftwidth = 4
      5 opt.clipboard:append({"unnamedplus"})
      6 opt.number = true
      7 vim.diagnostic.config({ virtual_text = true })