nixos-config/home-manager/modules/neovim.nix

219 lines
5.7 KiB
Nix
Raw Normal View History

{ pkgs, ... }:
{
home.file.".config/nvim/coc-settings.json".text = ''
{
"diagnostic.virtualText": true,
"diagnostic.checkCurrentLine": false,
"diagnostic.virtualTextCurrentLineOnly": false,
"diagnostic.messageTarget": "",
"suggest.noselect": true,
"languageserver": {
"nix": {
"command": "nil",
"filetypes": ["nix"],
"rootPatterns": ["flake.nix"]
}
}
}
'';
2022-02-16 15:50:31 +00:00
programs.neovim = {
2022-02-06 23:01:27 +00:00
enable = true;
withPython3 = true;
2022-03-29 14:58:31 +00:00
extraPackages = with pkgs; [
nil
nixpkgs-fmt
2022-03-29 14:58:31 +00:00
(python3.withPackages (ps: with ps; [
black
flake8
2022-05-03 14:12:20 +00:00
pylint
jedi
2022-03-29 14:58:31 +00:00
]))
];
2022-02-16 15:50:31 +00:00
vimAlias = true;
2022-02-07 17:11:50 +00:00
plugins = with pkgs.vimPlugins; [
# Nice statusbar at the bottom
vim-airline
# Autoformatter for 'all' languages
neoformat
# Colorscheme
papercolor-theme
2022-02-16 15:50:31 +00:00
# Better support for netrw
vim-vinegar
2022-02-16 15:50:31 +00:00
# Bar at the top for all open buffers
bufferline-nvim
# git diff icons on the left sidebar
vim-gitgutter
# blockcomments
tcomment_vim
2022-04-25 12:26:15 +00:00
# Nix support
vim-nix
2022-04-11 12:28:53 +00:00
# Go plugin from fatih
vim-go
2022-03-29 14:58:31 +00:00
# Coc language server support
coc-nvim
2022-05-03 14:12:20 +00:00
coc-pyright
# markdown
vim-markdown
tabular
vim-terraform
vim-nix
2022-02-07 17:11:50 +00:00
];
2022-02-06 23:01:27 +00:00
extraConfig = ''
2022-03-29 14:58:31 +00:00
set nocompatible
2022-02-06 23:01:27 +00:00
set mouse=a
2022-02-16 15:50:31 +00:00
set termguicolors
set background=dark
set number
set laststatus=2
colorscheme PaperColor
set hlsearch
set tabstop=4
set shiftwidth=4
set softtabstop=4
set expandtab
set cursorline
set scrolloff=5
let mapleader = ","
2022-07-22 08:50:52 +00:00
set ignorecase
set smartcase
set colorcolumn=120
2022-09-09 14:00:54 +00:00
set textwidth=120
" Autosave when focus is lost
:au FocusLost * :wa
2022-10-25 13:28:35 +00:00
" sync copy/paste buffer from vim with system buffer
set clipboard^=unnamed
""Hotkeys
set pastetoggle=<F10>
nnoremap <silent><cr> :nohlsearch<CR>
inoremap jj <Esc>
" Faster tab switching
map <Tab> :bnext<cr>
map <S-Tab> :bprevious<cr>
" easier moving of code blocks
set hidden
vnoremap < <gv
vnoremap > >gv
" Permanent undo history
set dir=~/.tmp/
set backupdir=~/.tmp/bak
if v:version >= 703
set undodir=~/.tmp/
set undofile
set undolevels=100
set undoreload=1000
endif
2023-02-22 20:39:20 +00:00
" COC
" Having longer updatetime (default is 4000 ms = 4s) leads to noticeable
" delays and poor user experience
set updatetime=300
2023-02-22 20:39:20 +00:00
" Use tab for trigger completion with characters ahead and navigate
" NOTE: There's always complete item selected by default, you may want to enable
" no select by `"suggest.noselect": true` in your configuration file
" NOTE: Use command ':verbose imap <tab>' to make sure tab is not mapped by
" other plugin before putting this into your config
inoremap <silent><expr> <TAB>
\ coc#pum#visible() ? coc#pum#next(1) :
\ CheckBackspace() ? "\<Tab>" :
\ coc#refresh()
inoremap <expr><S-TAB> coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
" Make <CR> to accept selected completion item or notify coc.nvim to format
" <C-g>u breaks current undo, please make your own choice
inoremap <silent><expr> <CR> coc#pum#visible() ? coc#pum#confirm()
\: "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"
function! CheckBackspace() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~# '\s'
endfunction
" Use <c-space> to trigger completion
if has('nvim')
inoremap <silent><expr> <c-space> coc#refresh()
else
inoremap <silent><expr> <c-@> coc#refresh()
endif
" Use `[g` and `]g` to navigate diagnostics
" Use `:CocDiagnostics` to get all diagnostics of current buffer in location list
nmap <silent> [g <Plug>(coc-diagnostic-prev)
nmap <silent> ]g <Plug>(coc-diagnostic-next)
" GoTo code navigation
nmap <silent> gd <Plug>(coc-definition)
nmap <silent> gy <Plug>(coc-type-definition)
nmap <silent> gi <Plug>(coc-implementation)
nmap <silent> gr <Plug>(coc-references)
" Use K to show documentation in preview window
nnoremap <silent> K :call ShowDocumentation()<CR>
function! ShowDocumentation()
if CocAction('hasProvider', 'hover')
call CocActionAsync('doHover')
else
call feedkeys('K', 'in')
endif
endfunction
" Highlight the symbol and its references when holding the cursor
autocmd CursorHold * silent call CocActionAsync('highlight')
" Symbol renaming
nmap <leader>rn <Plug>(coc-rename)
" Always show the signcolumn, otherwise it would shift the text each time
" diagnostics appear/become resolved
set signcolumn=yes
" dont start with a fully folded document
set nofoldenable
" Remember cursor position
autocmd BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\ exe "normal! g`\"" |
\ endif
2022-04-11 12:28:53 +00:00
" vim-go
au FileType go nmap <leader>r <Plug>(go-run)
au FileType go nmap <leader>b <Plug>(go-build)
au FileType go nmap <leader>t <Plug>(go-test)
let g:go_highlight_functions = 1
let g:go_highlight_methods = 1
let g:go_highlight_fields = 1
let g:go_highlight_types = 1
let g:go_highlight_operators = 1
let g:go_highlight_build_constraints = 1
2022-02-16 15:50:31 +00:00
lua << EOF
require("bufferline").setup{}
2022-02-16 15:50:31 +00:00
EOF
2022-02-06 23:01:27 +00:00
'';
};
2022-01-26 19:45:40 +00:00
}