this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

we ran it and updated nvim

+10 -21
+1 -1
flake.nix
··· 244 244 }; 245 245 }; 246 246 cube = { 247 - hostname = "anish.lakhwara.com"; 247 + hostname = "lakhwara.com"; 248 248 profiles.system = { 249 249 user = "anish"; 250 250 path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.cube;
+7 -18
home/profiles/nvim/default.nix
··· 46 46 sha256 = "vX7ZVJxgatIicmijehtaRvyHxk1i4gFfXrbPM/+VoFc="; 47 47 }; 48 48 }; 49 - my-lualine-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix { 50 - pname = "lualine.nvim"; 51 - version = "2022-05-13"; 52 - src = pkgs.fetchFromGitHub { 53 - owner = "nvim-lualine"; 54 - repo = "lualine.nvim"; 55 - rev = "a4e4517ac32441dd92ba869944741f0b5f468531"; 56 - sha256 = "18q935aicddai7j99ln61wz1di6lhwzs11x8fxgq704kfap1l2fj"; 57 - }; 58 - meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/"; 59 - }; 60 49 my-which-key-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix { 61 50 pname = "which-key.nvim"; 62 51 version = "2022-05-04"; ··· 575 564 local navic = require("nvim-navic") 576 565 577 566 local capabilities = vim.lsp.protocol.make_client_capabilities() 578 - capabilities = require('cmp_nvim_lsp').update_capabilities(capabilities) 567 + capabilities = require('cmp_nvim_lsp').default_capabilities(capabilities) 579 568 580 569 local lspconfig = require('lspconfig') 581 570 local servers = { 'clojure_lsp', 'terraform_lsp', 'zls' } ··· 623 612 624 613 -- treesitter 625 614 require('nvim-treesitter.configs').setup { 615 + parser_install_dir = "~/.local/share/nvim/site/parser/", 626 616 ensure_installed={'nix', 'clojure', 'python', 'fennel', 'lua', 'html', 'css', 'regex', 'supercollider', 'beancount'}, 627 617 highlight = { enabled = true, additional_vim_regex_highting = true, }, 628 618 textobjects = { enabled = true }, ··· 764 754 765 755 plugins = with pkgs.vimPlugins // customPlugins; [ 766 756 # ui 757 + lualine-nvim 767 758 fzf-vim 768 759 nerdtree 769 760 neovim-ayu ··· 782 773 barbar-nvim 783 774 auto-session 784 775 my-marks 776 + which-key-nvim 777 + nvim-peekup 785 778 786 779 # language 787 780 vim-nix ··· 790 783 csv-vim 791 784 direnv-vim 792 785 zig-vim 786 + conjure 793 787 794 788 # kitaab stuff 795 789 vimwiki ··· 834 828 leap 835 829 vim-beancount 836 830 # vimtex 837 - # TODO break with nvim 0.8.0 838 - # these are here until i upgrade my nixos channnel in the flake 839 - my-which-key-nvim 840 - my-lualine-nvim 841 - my-conjure 842 - my-nvim-peekup 831 + # custom 843 832 yuck-vim 844 833 nvim-parinfer 845 834 # vim-processing
+1 -1
hosts/profiles/desktop/default.nix
··· 1 - { config, pkgs, lib, ... }: 1 + { self, config, pkgs, lib, ... }: 2 2 let 3 3 tex = (pkgs.texlive.combine { 4 4 inherit (pkgs.texlive) scheme-basic
+1 -1
hosts/profiles/sync/website/default.nix
··· 18 18 # git add flake.lock 19 19 # git commit -m "update website" 20 20 # git push 21 - deploy .#cube --hostname lakhwara.com 21 + deploy .#cube 22 22 exit 0 23 23 ''; 24 24 serviceConfig = {