Played around with some more config settings
This commit is contained in:
@@ -17,7 +17,7 @@ set expandtab
|
||||
|
||||
" Plugin stuff "
|
||||
call plug#begin()
|
||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||
Plug 'neoclide/coc.nvim', {'branch': 'release', 'do': { -> coc#util#install()}}
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'preservim/nerdtree'
|
||||
Plug 'arcticicestudio/nord-vim'
|
||||
@@ -28,9 +28,28 @@ call plug#end()
|
||||
" colorscheme stuff "
|
||||
colorscheme nord
|
||||
|
||||
let g:vimsence_small_text = 'NeoVim'
|
||||
let g:vimsence_small_image = 'neovim'
|
||||
let g:vimsence_editing_details = 'Editing: {}'
|
||||
let g:vimsence_editing_state = 'Working on: {}'
|
||||
|
||||
|
||||
" Keybinds "
|
||||
let mapleader = " "
|
||||
|
||||
"inoremap <silent><expr> <TAB>
|
||||
" \ pumvisible() ? "\<C-n>" :
|
||||
" \ <SID>check_back_space() ? "\<TAB>" :
|
||||
" \ coc#refresh()
|
||||
"inoremap <expr><S-TAB> pumvisible() ? "\<C-p>" : "\<C-h>"
|
||||
|
||||
"function! s:check_back_space() abort
|
||||
" let col = col('.') - 1
|
||||
" return !col || getline('.')[col - 1] =~# '\s'
|
||||
"endfunction
|
||||
|
||||
"inoremap <silent><expr> <c-space> coc#refresh()
|
||||
|
||||
nnoremap <leader>h :wincmd h<CR>
|
||||
nnoremap <leader>j :wincmd j<CR>
|
||||
nnoremap <leader>k :wincmd k<CR>
|
||||
|
||||
Reference in New Issue
Block a user