From 8c4d939abb2a37e842445c9259067df6b940971e Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Wed, 14 Jul 2021 16:59:12 +1000 Subject: [PATCH] neovim: configured tabs for cuelang files --- profiles/neovim.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/profiles/neovim.nix b/profiles/neovim.nix index 36c7f85..6bdfde7 100644 --- a/profiles/neovim.nix +++ b/profiles/neovim.nix @@ -51,7 +51,10 @@ hi SpellBad cterm=underline " Set the spell checking highlight style hi SpellBad ctermbg=NONE " Set the spell checking highlight background match ErrorMsg '\s\+$' " + nnoremap :Files + nnoremap f :Rg + set grepprg=rg\ --vimgrep\ --smart-case\ --follow let g:airline_powerline_fonts = 1 " Use powerline fonts let g:airline_theme='one' " Set the airline theme @@ -191,6 +194,7 @@ " Settings for my Cue environment: function! CueSettings() + set noexpandtab set tabstop=2 set shiftwidth=2 set textwidth=79