diff --git a/pkgs/neovim/default.nix b/pkgs/neovim/default.nix index ca2de7aa33cd89bf5ad112a283f3c0eefdc4e119..1f282e90595abfaebb9b54ff98cde7fb4ba6b8af 100644 --- a/pkgs/neovim/default.nix +++ b/pkgs/neovim/default.nix @@ -11,6 +11,7 @@ pkgs.neovim.override { " Configure colorscheme let g:gruvbox_contrast_dark='hard' + let g:gruvbox_contrast_light='hard' colorscheme gruvbox "hi ColorMagenta guifg='#f92672' guibg=132 guibg='NONE' ctermbg='NONE' gui='NONE' cterm='NONE' "hi! link haskellOperators ColorMagenta @@ -46,6 +47,9 @@ pkgs.neovim.override { " I want to use clipboard=autoselect, when it is implemented: https://github.com/neovim/neovim/pull/3708 set clipboard=unnamed + " Wrap at word boundaries instead of splitting words at the end of the line. + set linebreak + " Shows the effects of a command incrementally, as you type. Also shows partial off-screen results in a preview window. set inccommand=split