neovim: configured tabs for cuelang files

This commit is contained in:
Serĉanto de Scio 2021-07-14 16:59:12 +10:00
parent 61c757a419
commit 8c4d939abb
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA

View file

@ -51,7 +51,10 @@
hi SpellBad cterm=underline " Set the spell checking highlight style hi SpellBad cterm=underline " Set the spell checking highlight style
hi SpellBad ctermbg=NONE " Set the spell checking highlight background hi SpellBad ctermbg=NONE " Set the spell checking highlight background
match ErrorMsg '\s\+$' " match ErrorMsg '\s\+$' "
nnoremap <silent> <C-p> :Files<CR> nnoremap <silent> <C-p> :Files<CR>
nnoremap <silent> <Leader>f :Rg<CR>
set grepprg=rg\ --vimgrep\ --smart-case\ --follow
let g:airline_powerline_fonts = 1 " Use powerline fonts let g:airline_powerline_fonts = 1 " Use powerline fonts
let g:airline_theme='one' " Set the airline theme let g:airline_theme='one' " Set the airline theme
@ -191,6 +194,7 @@
" Settings for my Cue environment: " Settings for my Cue environment:
function! CueSettings() function! CueSettings()
set noexpandtab
set tabstop=2 set tabstop=2
set shiftwidth=2 set shiftwidth=2
set textwidth=79 set textwidth=79