neovim-config/init.vim
Robert Altner 13408cacac
fix tab
2024-06-07 13:09:36 +02:00

54 lines
1.3 KiB
VimL

filetype plugin indent on
syntax enable
let maplocalleader = "\\"
let g:vimspector_enable_mappings = "VISUAL_STUDIO"
let g:startify_fortune_use_unicode = 1
"lua require("plugins")
lua require("init")
lua require("keymap")
lua require("coc")
set number relativenumber
set tabstop=4
set shiftwidth=4
set noautochdir
set nowrap
set list listchars=tab:▎\ ,trail,precedes:<,extends:>
set foldmethod=indent
set foldlevel=99
set nofoldenable
"colorscheme tokyonight-storm
colorscheme kanagawa
let g:blamer_enabled = 1
let g:startify_change_to_dir = 0
let g:startify_change_to_vcs_root = 1
inoremap <silent><expr> <UP> coc#pum#visible() ? coc#pum#prev(1) : ""
inoremap <silent><expr> <DOWN> coc#pum#visible() ? coc#pum#next(1) : ""
"Fix escape sending user to normal mode in fzf buffers
autocmd FileType fzf tnoremap <buffer><silent><ESC> <ESC>
inoremap <silent><expr> <TAB>
\ coc#pum#visible() ? coc#_select_confirm() :
\ CheckBackspace() ? "\<TAB>" :
\ coc#expandableOrJumpable() ? "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>" :
\ "\<TAB>"
function! CheckBackspace() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~# '\s'
endfunction
let g:coc_snippet_next = '<tab>'
"highlight LineNr guifg=#ff57d8
highlight LineNr guifg=#fcc35a
set noexpandtab