neovim-config/init.vim

54 lines
1.3 KiB
VimL
Raw Normal View History

filetype plugin indent on
syntax enable
let maplocalleader = "\\"
2024-04-17 20:47:26 +00:00
let g:vimspector_enable_mappings = "VISUAL_STUDIO"
2024-04-24 06:49:12 +00:00
let g:startify_fortune_use_unicode = 1
2024-04-17 20:47:26 +00:00
"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
2024-04-24 07:31:19 +00:00
set list listchars=tab:▎\ ,trail,precedes:<,extends:>
2024-04-17 20:47:26 +00:00
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
2024-04-23 20:50:14 +00:00
inoremap <silent><expr> <UP> coc#pum#visible() ? coc#pum#prev(1) : ""
inoremap <silent><expr> <DOWN> coc#pum#visible() ? coc#pum#next(1) : ""
2024-04-24 09:13:20 +00:00
"Fix escape sending user to normal mode in fzf buffers
autocmd FileType fzf tnoremap <buffer><silent><ESC> <ESC>
2024-04-17 20:47:26 +00:00
inoremap <silent><expr> <TAB>
\ coc#pum#visible() ? coc#_select_confirm() :
\ coc#expandableOrJumpable() ? "\<C-r>=coc#rpc#request('doKeymap', ['snippets-expand-jump',''])\<CR>" :
\ CheckBackspace() ? "\<TAB>" :
\ coc#refresh()
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
2024-05-19 15:09:33 +00:00
set noexpandtab