mirror of https://github.com/fredrikekre/.dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.7 KiB
65 lines
1.7 KiB
call plug#begin('~/.vim/plugged') |
|
|
|
"Julia support |
|
Plug 'JuliaEditorSupport/julia-vim' |
|
"TOML syntax highlighting |
|
Plug 'cespare/vim-toml' |
|
"LaTeX |
|
Plug 'lervag/vimtex' |
|
|
|
Plug 'junegunn/fzf' |
|
Plug 'junegunn/fzf.vim' |
|
|
|
Plug 'morhetz/gruvbox' |
|
|
|
Plug 'vim-airline/vim-airline' |
|
Plug 'vim-airline/vim-airline-themes' |
|
|
|
Plug 'tpope/vim-commentary' |
|
Plug 'tpope/vim-fugitive' |
|
|
|
if has('nvim') |
|
Plug 'neovim/nvim-lspconfig' |
|
end |
|
|
|
call plug#end() |
|
|
|
"Need to specify latex flavor for the lervag/vimtex plugin |
|
:let g:tex_flavor = 'latex' |
|
"Color scheme |
|
:let g:gruvbox_contrast_dark='hard' |
|
:colorscheme gruvbox |
|
:highlight Normal ctermbg=NONE |
|
"Line numbers |
|
:set number |
|
"Column guide |
|
:set colorcolumn=93 |
|
"Misc keymappings and configurations |
|
:imap jk <Esc> |"use jk for exiting insert mode |
|
:set tabstop=4 softtabstop=4 shiftwidth=4 expandtab smarttab autoindent "Nicer tab actions |
|
"Move aroung splits without the C-W prefix |
|
:nnoremap <C-J> <C-W><C-J> |
|
:nnoremap <C-K> <C-W><C-K> |
|
:nnoremap <C-L> <C-W><C-L> |
|
:nnoremap <C-H> <C-W><C-H> |
|
"Easier fzf keybindings |
|
:nnoremap <C-F> :Rg!<CR> |
|
:nnoremap <C-O> :Files!<CR> |
|
"More natural split directions |
|
:set splitbelow |
|
:set splitright |
|
"Auto-resize splits when terminal window changes size (e.g. when splitting or |
|
"zooming with tmux |
|
:autocmd VimResized * wincmd = |
|
"Airline status bar |
|
:let g:airline_theme='bubblegum' |
|
:let g:airline#extensions#tabline#left_sep=' ' |
|
:let g:airline#extensions#tabline#left_alt_sep=' ' |
|
:let g:airline#extensions#tabline#enabled = 1 |
|
:set noshowmode "Already showed by airline |
|
|
|
"Keep some lines above/below cursor |
|
:set scrolloff=10 |
|
|
|
"Use clipboard for everything (instead of */+ registers) |
|
:set clipboard+=unnamedplus
|
|
|