Played around with some more config settings

This commit is contained in:
2021-01-29 01:13:30 +01:00
parent c167d62f5a
commit d337ac295a
10 changed files with 108 additions and 52 deletions
-1
View File
@@ -1 +0,0 @@
{}
-1
View File
@@ -1 +0,0 @@
{"dependencies":{}}
-1
View File
@@ -1 +0,0 @@
{}
+20 -1
View File
@@ -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>