filetype plugin indent on syntax on " enable autocompletion of ale let g:ale_completion_enabled = 1 " disable latex linting from ale as i've got my own plugin for that let g:ale_linters = { 'tex': [], 'haskell': ['hls', 'hindent'], 'rust': ['rls'] } "let g:ale_fixers = {'haskell': ['hindent']} let g:ale_fixers = { 'haskell': ['hls', 'hindent'], 'rust': ['rls'] } " Initialize plugin system call plug#begin('~/.vim/plugged') " Make sure you use single quotes " Shorthand notation; fetches https://github.com/morhetz/gruvbox "Plug 'morhetz/gruvbox' Plug 'dkasak/gruvbox' " Any valid git URL is allowed Plug 'https://github.com/scrooloose/nerdcommenter.git' " On-demand loading for languages Plug 'rust-lang/rust.vim', { 'for': 'rust' } Plug 'cespare/vim-toml', { 'for': 'toml' } Plug 'keith/swift.vim', { 'for': 'swift' } Plug 'neovimhaskell/haskell-vim', { 'for': 'haskell' } Plug 'jalvesaq/Nvim-R', {'branch': 'stable', 'for': 'r'} " Lingua Franca Plug 'lf-lang/lingua-franca.vim' Plug 'vim-syntastic/syntastic' Plug 'vim-airline/vim-airline' Plug 'tpope/vim-fugitive' Plug 'airblade/vim-gitgutter' Plug 'justinmk/vim-sneak' Plug 'lervag/vimtex' Plug 'editorconfig/editorconfig-vim' Plug 'LnL7/vim-nix' Plug 'preservim/nerdtree' " wayland clipboard Plug 'jasonccox/vim-wayland-clipboard' " Plugin outside ~/.vim/plugged with post-update hook Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } Plug 'junegunn/fzf.vim' " ale language server client Plug 'dense-analysis/ale' " Initialize plugin system call plug#end() " open fzf files in new tab instead of new buffer "command! -bang -nargs=? -complete=dir Files "\ call fzf#vim#files(, {'sink': 'tabedit', 'options': ['--info=inline', '--preview', '~/.vim/plugged/fzf.vim/bin/preview.sh {}']}, 0) set laststatus=2 let g:airline#extensions#tabline#enabled = 1 let g:airline_powerline_fonts = 1 " set haskell highlighting let g:haskell_enable_quantification = 1 " to enable highlighting of `forall` let g:haskell_enable_recursivedo = 1 " to enable highlighting of `mdo` and `rec` let g:haskell_enable_arrowsyntax = 1 " to enable highlighting of `proc` let g:haskell_enable_pattern_synonyms = 1 " to enable highlighting of `pattern` let g:haskell_enable_typeroles = 1 " to enable highlighting of type roles let g:haskell_enable_static_pointers = 1 " to enable highlighting of `static` let g:haskell_backpack = 1 " to enable highlighting of backpack keywords " possible setting as alternative for easymotion " let g:sneak#label = 1 set backspace=indent,eol,start " map the leader key to , let mapleader="," " set filetypes au BufRead,BufNewFile *.ohuac setfiletype rust au BufRead,BufNewFile *.ohuao setfiletype json " Cycling through windows and tabs -- made by Pius :D " nnoremap j " nnoremap k " nnoremap l " nnoremap h " nnoremap _ " nnoremap _ " nnoremap \| " nnoremap \| map h :tabp map l :tabn map :bprevious map :bnext map f :Files map bl :Buffers " fix auto-completion set wildmenu " show a completion menu set wildignorecase set wildignore=*.o,*~,*.pyc,*.aux,*.bbl,*.blg,*-blx.bib,*.log,*.out,*.run.xml, \*.toc,*.nav,*.snm " ignore auxiliary files " set completeopt-=preview " automatically reload files changed on disk but not in buffer set autoread set hidden " tex configuration let g:tex_flavor='latex' " Optics colorscheme gruvbox set background=dark " Setting dark mode set number set relativenumber set tabstop=4 set shiftwidth=4 set expandtab " Search set hlsearch " Highlight all search results set smartcase " Enable smart-case search set ignorecase " Always case-insensitive set incsearch " Searches for strings incrementally