neovim-config/init.vim

74 lines
2.4 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")
2025-03-17 11:12:44 +00:00
" lua require("coc")
"
2024-04-17 20:47:26 +00:00
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
2025-03-02 18:44:36 +00:00
au ColorSchemePre kanagawa highlight! link RainbowDelimiterRed MiniIconsRed
au ColorSchemePre kanagawa highlight! link RainbowDelimiterYellow MiniIconsYellow
au ColorSchemePre kanagawa highlight! link RainbowDelimiterBlue MiniIconsBlue
au ColorSchemePre kanagawa highlight! link RainbowDelimiterOrange MiniIconsOrange
au ColorSchemePre kanagawa highlight! link RainbowDelimiterGreen MiniIconsGreen
au ColorSchemePre kanagawa highlight! link RainbowDelimiterViolet MiniIconsPurple
au ColorSchemePre kanagawa highlight! link RainbowDelimiterCyan MiniIconsCyan
au ColorScheme kanagawa highlight! LineNr guifg=#fcc35a
2024-04-17 20:47:26 +00:00
"colorscheme tokyonight-storm
colorscheme kanagawa
let g:blamer_enabled = 1
2024-12-04 09:33:33 +00:00
let g:startify_change_to_dir = 1
2024-04-17 20:47:26 +00:00
let g:startify_change_to_vcs_root = 1
2025-03-02 18:44:36 +00:00
let g:startify_bookmarks = map(filter(globpath('/home/robert/repos', "*", 0, 1), 'isdirectory(v:val)'), {idx,val -> { "abcdefgmnopqrstuvwxyz"[idx]: '/home/robert/' .. join(split(val, '/')[2:-1], '/') .. '/'}})
2025-01-23 09:23:56 +00:00
let g:ale_fixers = {
\ 'c': ['clang-format']
\}
2024-04-17 20:47:26 +00:00
2025-03-17 11:12:44 +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-23 20:50:14 +00:00
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>
2025-03-17 11:12:44 +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>" :
" \ "\<TAB>"
2024-04-17 20:47:26 +00:00
function! CheckBackspace() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~# '\s'
endfunction
2025-03-17 11:12:44 +00:00
" let g:coc_snippet_next = '<tab>'
2024-04-17 20:47:26 +00:00
"highlight LineNr guifg=#ff57d8
2024-05-19 15:09:33 +00:00
set noexpandtab
2024-07-16 08:01:56 +00:00
if has('python')
map <C-K> :pyf /usr/share/clang/clang-format.py<cr>
imap <C-K> <c-o>:pyf /usr/share/clang/clang-format.py<cr>
elseif has('python3')
map <C-K> :py3f /usr/share/clang/clang-format.py<cr>
imap <C-K> <c-o>:py3f /usr/share/clang/clang-format.py<cr>
endif