fix(prog/nvim): system clipboard

This commit is contained in:
Dmitriy Pleshevskiy 2022-04-22 11:50:12 +03:00
parent c0232c9c6a
commit 9ef81b6785
2 changed files with 3 additions and 1 deletions

View file

@ -41,7 +41,8 @@ in
home.stateVersion = "21.11"; home.stateVersion = "21.11";
home.packages = with pkgs; [ home.packages = with pkgs; [
# system ui # system
xclip # access x clipboard from a console
dmenu # menu for x window system dmenu # menu for x window system
flameshot # powerful yet simple to use screenshot software flameshot # powerful yet simple to use screenshot software

View file

@ -4,6 +4,7 @@ let g:maplocalleader = '-'
syntax enable syntax enable
filetype plugin indent on filetype plugin indent on
set clipboard+=unnamedplus
set encoding=utf-8 set encoding=utf-8
set autoindent set autoindent
set smartindent set smartindent