nixos/init.vim
2022-08-08 17:31:37 +01:00

140 lines
4.5 KiB
VimL

" set runtimepath^=~/.vim runtimepath+=~/.vim/after
" let &packpath = &runtimepath
" source ~/.vimrc
call plug#begin()
" The default plugin directory will be as follows:
" - Vim (Linux/macOS): '~/.vim/plugged'
" - Vim (Windows): '~/vimfiles/plugged'
" - Neovim (Linux/macOS/Windows): stdpath('data') . '/plugged'
" You can specify a custom plugin directory by passing it as the argument
" - e.g. `call plug#begin('~/.vim/plugged')`
" - Avoid using standard Vim directory names like 'plugin'
" Make sure you use single quotes
Plug 'neovim/nvim-lspconfig'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
Plug 'sonph/onehalf', {'rtp': 'vim/'}
Plug 'joshdick/onedark.vim'
Plug 'mileszs/ack.vim'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
Plug 'liuchengxu/vista.vim'
Plug 'tpope/vim-unimpaired'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-commentary'
Plug 'airblade/vim-gitgutter'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" Plug 'itchyny/lightline.vim'
Plug 'christoomey/vim-tmux-navigator'
" Initialize plugin system
call plug#end()
set mouse=nv
let g:python3_host_prog = '~/.pyenv/versions/neovim3/bin/python'
luafile ~/.vim/lsp_config.lua
map ; :Files<CR>
if executable('ag')
let g:ackprg = 'ag --vimgrep'
endif
if exists('+termguicolors') && ($COLORTERM == "24bit" || $COLORTERM == "truecolor")
set termguicolors
endif
colorscheme onehalfdark
let g:airline_theme='onehalfdark'
set cursorline
let mapleader=","
set number
set relativenumber
set listchars=trail:.,tab:>_
set list
set wrap
set linebreak
set autoread
au BufRead,BufNewFile *.ipynb setlocal filetype=json
au BufRead,BufNewFile *.md setlocal spell
au BufRead,BufNewFile *.code-workspace setlocal filetype=json
au BufRead,BufNewFile *.csv setlocal nowrap
au BufRead,BufNewFile *.service[a-zA-Z0-9]* setlocal filetype=systemd
au TermOpen * setlocal nonumber norelativenumber
syntax on
if &diff
highlight! link DiffText MatchParen
endif
au OptionSet diff highlight! link DiffText MatchParen
set expandtab
set autoindent
set smartindent
filetype plugin indent on
let g:vista_default_executive = 'nvim_lsp'
let g:vista_fzf_preview = ['right:50%']
imap jk <Esc>
command Bd b# | bd #
command! BufOnly silent! execute "%bd|e#|bd#"
nnoremap <Leader>b :buffers<CR>:buffer<Space>
nnoremap <leader>n :NERDTreeFocus<CR>
nnoremap <leader>k :Vista<CR>
nnoremap <leader>; :Vista finder<CR>
nnoremap <C-n> :NERDTree<CR>
nnoremap <C-t> :NERDTreeToggle<CR>
nnoremap <C-f> :NERDTreeFind<CR>
nnoremap <Leader>a :Ack!<Space>
" Exit Vim if NERDTree is the only window remaining in the only tab.
autocmd BufEnter * if tabpagenr('$') == 1 && winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif
set splitbelow
set splitright
let g:netrw_list_hide= '\(^\|\s\s\)\zs\.\S\+'
" function! GitStatus()
" let [a,m,r] = GitGutterGetHunkSummary()
" return printf('%s +%d ~%d -%d', FugitiveHead(), a, m, r)
" endfunction
"
" let g:slime_target = "tmux"
" let g:slime_default_config = {"socket_name": get(split($TMUX, ","), 0), "target_pane": "{last}"}
"
" let g:lightline = { 'colorscheme': 'onehalfdark' }
" let g:lightline.component_expand = {
" \ 'linter_checking': 'lightline#ale#checking',
" \ 'linter_infos': 'lightline#ale#infos',
" \ 'linter_warnings': 'lightline#ale#warnings',
" \ 'linter_errors': 'lightline#ale#errors',
" \ 'linter_ok': 'lightline#ale#ok',
" \ }
" let g:lightline.component_type = {
" \ 'linter_checking': 'right',
" \ 'linter_infos': 'right',
" \ 'linter_warnings': 'warning',
" \ 'linter_errors': 'error',
" \ 'linter_ok': 'right',
" \ }
" let g:lightline.component_function = {
" \ 'gitstatus': 'GitStatus'
" \ }
" let g:lightline.active = {
" \ 'left': [ [ 'mode', 'paste' ],
" \ [ 'gitstatus', 'readonly', 'filename', 'modified' ] ],
" \ 'right': [ [ 'linter_checking', 'linter_errors', 'linter_warnings', 'linter_infos', 'linter_ok', 'lineinfo' ],
" \ [ 'percent' ],
" \ [ 'fileformat', 'fileencoding', 'filetype' ] ]
" \ }
" set laststatus=0
" set noshowmode