From c80598d4e4ffea73647b2ea8440a6080596968fe Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Mon, 3 Jul 2023 11:27:19 +0300 Subject: 2023-07-03 --- modules/common/common/home-manager.nix | 7 +- modules/common/git.nix | 6 +- modules/common/profiles/default.nix | 3 - modules/common/vim/default.nix | 62 +++++++-------- modules/common/vim/rc.vim | 140 +++++++-------------------------- 5 files changed, 64 insertions(+), 154 deletions(-) (limited to 'modules/common') diff --git a/modules/common/common/home-manager.nix b/modules/common/common/home-manager.nix index 7fa21f8..44b0eaa 100644 --- a/modules/common/common/home-manager.nix +++ b/modules/common/common/home-manager.nix @@ -1,5 +1,5 @@ { - config, + inputs, lib, localUsername ? lib.my.username, ... @@ -11,7 +11,10 @@ with lib; { hm = { news.display = "silent"; - home = {inherit (config.system) stateVersion;}; + # NOTE Inheriting directly from `system.stateVersion` does not work on MacOS for + # some reason. + home.stateVersion = with builtins; + head (split "\n" (readFile "${inputs.nixpkgs}/.version")); }; home-manager = { diff --git a/modules/common/git.nix b/modules/common/git.nix index ce4e505..0bd7720 100644 --- a/modules/common/git.nix +++ b/modules/common/git.nix @@ -14,7 +14,7 @@ in { config = mkIf cfg.client.enable { secrets = let - # HACK Darwin doesn't support XDG specifications. + # HACK MacOS doesn't support XDG specifications. configHome = "${config.my.home}/.config"; in { glab-cli-config = { @@ -97,8 +97,8 @@ in { wtc = "!${curl} -sq whatthecommit.com/index.txt | ${git} commit -F -"; }; - # All helper tools/editor generated files should go here. This must - # be kept relatively clean and void of any project-specific residual + # All helper tools/editor generated files should go here. This must be + # kept relatively clean and void of any project-specific residual # files. ignores = [ "*~" diff --git a/modules/common/profiles/default.nix b/modules/common/profiles/default.nix index 4f8fa4d..ad5e841 100644 --- a/modules/common/profiles/default.nix +++ b/modules/common/profiles/default.nix @@ -81,10 +81,7 @@ in { time.timeZone = "Europe/Moscow"; environment.systemPackages = with pkgs; [ - ddrescue file - git - gnupg tree ]; }; diff --git a/modules/common/vim/default.nix b/modules/common/vim/default.nix index 2ee8a0b..3755201 100644 --- a/modules/common/vim/default.nix +++ b/modules/common/vim/default.nix @@ -7,43 +7,37 @@ with lib; let cfg = config.nixfiles.modules.vim; in { - options.nixfiles.modules.vim.enable = mkEnableOption "Vim"; + options.nixfiles.modules.vim = { + enable = mkEnableOption "Vim"; + + rc = mkOption { + type = types.str; + default = readFile ./rc.vim; + description = "Configuration file."; + }; + + plugins = mkOption { + type = with types; listOf package; + default = with pkgs.vimPlugins; [ + editorconfig-vim + vim-eunuch + vim-nix + vim-sensible + vim-sleuth + vim-surround + vim-unimpaired + ]; + description = "Plugins."; + }; + }; config = mkIf cfg.enable { - programs.vim.package = with pkgs; - (vim_configurable.override { - features = "normal"; - cscopeSupport = false; - darwinSupport = pkgs.stdenv.isDarwin; - guiSupport = false; - luaSupport = false; - multibyteSupport = false; - netbeansSupport = false; - nlsSupport = false; - perlSupport = false; - pythonSupport = false; - rubySupport = false; - tclSupport = false; - ximSupport = false; - }) - .customize { - name = "vim"; - vimrcConfig = { - customRC = readFile ./rc.vim; - packages.myVimPackage.start = with vimPlugins; [ - editorconfig-vim - vim-eunuch - vim-nix - vim-sleuth - vim-surround - vim-unimpaired - ]; - }; + environment = with config.programs.vim; { + systemPackages = [package]; + variables = rec { + EDITOR = mkOverride 100 "${package}/bin/vim"; + VISUAL = EDITOR; }; - - environment = { - systemPackages = [config.programs.vim.package]; - variables.EDITOR = mkOverride 100 "vim"; }; }; } diff --git a/modules/common/vim/rc.vim b/modules/common/vim/rc.vim index 945643a..3bd9eb7 100644 --- a/modules/common/vim/rc.vim +++ b/modules/common/vim/rc.vim @@ -1,38 +1,31 @@ -set nocompatible - let $VIMFILES = expand(':p:h') let g:skip_defaults_vim = 1 let g:netrw_dirhistmax = 0 -set autoread -set backspace=indent,eol,start +if has('unnamedplus') + set clipboard^=unnamedplus +else + set clipboard^=unnamed +endif -set clipboard=unnamedplus +set backspace=indent,eol,start set diffopt+=iwhite set hidden -set history=256 set lazyredraw set mouse= set path+=** -set tabpagemax=50 set viminfo= set cmdheight=1 -set display+=lastline set fillchars=vert:\ " -set laststatus=2 set modeline set noshowmode -set ruler set shortmess+=I set textwidth=0 set title -set sessionoptions-=options -set viewoptions-=options - set noerrorbells set novisualbell @@ -49,7 +42,6 @@ set completeopt+=longest set gdefault set hlsearch -set incsearch set iskeyword+=- set magic @@ -75,7 +67,6 @@ if v:version >= 700 endif set wildignorecase -set wildmenu set wildignore= set nobackup @@ -97,65 +88,10 @@ set smarttab set softtabstop=4 set tabstop=4 -autocmd BufEnter *.* :set colorcolumn= - -if &t_Co == 8 && $TERM !~# '^Eterm' - set t_Co=16 -endif - -if &listchars ==# 'eol:$' - set listchars=tab:>\ ,trail:-,extends:>,precedes:<,nbsp:+ -endif +set colorcolumn= +let g:EditorConfig_max_line_indicator = "none" -if v:version > 703 || v:version == 703 && has("patch541") - set formatoptions+=j -endif - -if has('path_extra') - setglobal tags-=./tags tags-=./tags; tags^=./tags; -endif - -if !has('nvim') && &ttimeoutlen == -1 - set ttimeout - set ttimeoutlen=100 -endif - -try - set encoding=utf-8 - scriptencoding utf-8 -catch -endtry - -try - if &fileencodings !~? "utf-8" - let g:added_fenc_utf8 = 1 - set fileencodings+=utf-8 - endif -catch -endtry - -if has('autocmd') - filetype plugin indent on - - if exists("+omnifunc") - autocmd Filetype * - \ if &omnifunc == "" | - \ setlocal omnifunc=syntaxcomplete#Complete | - \ endif - endif - - autocmd BufEnter * set noreadonly -endif - -if has('syntax') && !exists('g:syntax_on') - syntax enable -endif - -if !exists('g:loaded_matchit') && findfile('plugin/matchit.vim', &rtp) ==# '' - runtime! macros/matchit.vim -endif - -nnoremap +nnoremap let mapleader=" " nnoremap :W :w @@ -163,27 +99,27 @@ nnoremap :W! :w! nnoremap :Q :q nnoremap :Q! :q! -nnoremap j v:count ? 'j' : 'gj' -nnoremap k v:count ? 'k' : 'gk' +nnoremap j v:count ? 'j' : 'gj' +nnoremap k v:count ? 'k' : 'gk' nnoremap J gt nnoremap K gT -nnoremap ^h -vnoremap ^h +nnoremap ^h +vnoremap ^h nnoremap H ^h vnoremap H ^h -nnoremap $ -vnoremap $ +nnoremap $ +vnoremap $ nnoremap L $ vnoremap L $ nnoremap N Nzzzv nnoremap n nzzzv -inoremap u -inoremap u +inoremap u +inoremap u vnoremap < >gv @@ -192,24 +128,22 @@ vnoremap >>_ nnoremap <<_ -nnoremap ]b :bnext -nnoremap [b :bprevious +nnoremap ]b :bnext +nnoremap [b :bprevious -nnoremap h -nnoremap j -nnoremap k -nnoremap l +nnoremap h +nnoremap j +nnoremap k +nnoremap l nnoremap * /\<=expand('')\> nnoremap # ?\<=expand('')\> -nnoremap :nohlsearch=has('diff')?'diffupdate':'' - cnoremap ;/ =expand('%:p:h').'/' cnoremap ;; =expand('%:t') cnoremap ;. =expand('%:p:r') -nnoremap . :lcd %:p:h +nnoremap . :lcd %:p:h nnoremap Q @q @@ -225,29 +159,11 @@ nnoremap P "+P inoremap "+pi cnoremap + -nmap w :w! -nmap wq :wq! +nmap w :w! +nmap wq :wq! -nnoremap ZX :qa! +nnoremap ZX :qa! -nnoremap q :q +nnoremap q :q command WS w !sudo tee "%" >/dev/null - -function! SwitchCase() - normal! ~ - if strlen(getline('.')) != virtcol('.') - normal! h - endif -endfunction -nnoremap ~ :call SwitchCase() - -function! s:GM() - execute 'normal! ^' - let first_col = virtcol('.') - execute 'normal! g_' - let last_col = virtcol('.') - execute 'normal! ' . (first_col + last_col) / 2 . '|' -endfunction -nnoremap gm :call GM() -onoremap gm :call GM() -- cgit v1.2.3