mirror of
https://github.com/bvanroll/_dotfiles.git
synced 2025-08-28 19:42:47 +00:00
Merge branch 'public' of github.com:bvanroll/_dotfiles into public
This commit is contained in:
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
[submodule ".config/nvim"]
|
||||||
|
path = .config/nvim
|
||||||
|
url = https://github.com/NvChad/starter
|
17
.vimrc
17
.vimrc
@@ -81,7 +81,9 @@ set lazyredraw
|
|||||||
" enable regex enginej
|
" enable regex enginej
|
||||||
set regexpengine=0
|
set regexpengine=0
|
||||||
|
|
||||||
|
"Configure backspace so it acts as it should act
|
||||||
|
set backspace=eol,start,indent
|
||||||
|
set whichwrap+=<,>,h,l
|
||||||
|
|
||||||
"plugins config
|
"plugins config
|
||||||
|
|
||||||
@@ -89,7 +91,7 @@ set regexpengine=0
|
|||||||
|
|
||||||
call plug#begin('~/.vim/plugged')
|
call plug#begin('~/.vim/plugged')
|
||||||
Plug 'preservim/nerdtree'
|
Plug 'preservim/nerdtree'
|
||||||
Plug 'prabirshrestha/vim-lsp'
|
" Plug 'prabirshrestha/vim-lsp'
|
||||||
Plug 'SirVer/ultisnips'
|
Plug 'SirVer/ultisnips'
|
||||||
Plug 'sheerun/vim-polyglot'
|
Plug 'sheerun/vim-polyglot'
|
||||||
Plug 'petrbroz/vim-glsl'
|
Plug 'petrbroz/vim-glsl'
|
||||||
@@ -138,4 +140,15 @@ autocmd! BufNewFile,BufRead *.fsh set ft=glsl
|
|||||||
|
|
||||||
|
|
||||||
set updatetime=300
|
set updatetime=300
|
||||||
|
" easy complete settings:
|
||||||
|
" highlight the symbol when holding the cursor if you need it
|
||||||
|
let g:easycomplete_cursor_word_hl = 1
|
||||||
|
" using nerdfont is highly recommened
|
||||||
|
let g:easycomplete_nerd_font = 1
|
||||||
|
"goto code nav
|
||||||
|
|
||||||
|
noremap gr :EasyCompleteReference<CR>
|
||||||
|
noremap gd :EasyCompleteGotoDefinition<CR>
|
||||||
|
noremap rn :EasyCompleteRename<CR>
|
||||||
|
noremap gb :BackToOrignialBuffer<CR>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user