configuration: remove nvim default setting

* Removes nvim setting that are enabled by default.

Co-Authored-by: iGor milhit <igor@milhit.ch>
kickstart
iGor milhit 2021-05-21 08:14:50 +02:00
parent 59f6ec0a76
commit 4ad8d1981c
Signed by: igor
GPG Key ID: 692D97C3D0228A99
1 changed files with 1 additions and 7 deletions

View File

@ -40,9 +40,6 @@ Plug 'stsewd/fzf-checkout.vim' " Fu
Plug 'junegunn/fzf.vim' " fzf for vim/neovim
call plug#end()
" Filetype detection
filetype plugin on
" Format indentation
if has("autocmd")
filetype plugin indent on
@ -61,8 +58,6 @@ set showmode " Sh
set showmatch " Show matching brackets.
set ignorecase " Do case insensitive matching
set smartcase " Do smart case matching
set incsearch " Enable incremental search
set hlsearch " Highlight search
let g:rg_highlight='true' " Activate ripgrep Highlighting
nnoremap <silent> <C-l> :nohlsearch<CR><C-l> " set C-l to :nohlsearch
set autowrite " Automatically save before commands like :next and :make
@ -124,7 +119,7 @@ let g:xml_syntax_folding=3
au FileType xml setlocal foldmethod=syntax
autocmd FileType xml set foldlevel=1
" Copy to clipboard with `"+y`
" Use the system clipboard
set clipboard+=unnamedplus
" Airline
@ -266,5 +261,4 @@ let g:isort_command='isort'
" Syntax coloration and color theme
syntax enable
set background=dark
colorscheme nord