nix-config

My personal nixos and home-manager configuration
Log | Files | Refs | README

lua.lua (384B)


      1 -- lua ftplugin
      2 
      3 -- Use spaces for lua files
      4 vim.bo.tabstop = 4
      5 vim.bo.softtabstop = 4
      6 vim.bo.shiftwidth = 4
      7 vim.bo.expandtab = true
      8 vim.bo.autoindent = true
      9 vim.o.tabstop = 4
     10 vim.o.softtabstop = 4
     11 vim.o.shiftwidth = 4
     12 vim.o.expandtab = true
     13 vim.o.autoindent = true
     14 vim.o.smarttab = true
     15 
     16 -- Make the width of a line 79 characters (if you have more it is ugly!)
     17 vim.bo.textwidth = 79