neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

.editorconfig (336B)


      1 root = true
      2 
      3 [*]
      4 indent_style = space
      5 indent_size = 2
      6 tab_width = 8
      7 end_of_line = lf
      8 insert_final_newline = true
      9 
     10 [*.zig]
     11 indent_size = 4
     12 
     13 [*.{c,h,in,lua}]
     14 max_line_length = 100
     15 
     16 [src/nvim/{eval,vvars}.lua]
     17 max_line_length = 68
     18 
     19 [*.py]
     20 indent_size = 4
     21 
     22 [{Makefile,**/Makefile,*.mk,runtime/doc/*.txt}]
     23 indent_style = tab
     24 indent_size = 8