dotfiles

My current dotfiles, managed with stow!
Log | Files | Refs | README

cpp.lua (288B)


      1 -- cpp ftplugin
      2 
      3 -- Use spaces for cpp 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