diff --git a/README.md b/README.md index cdcf086..ff6cbea 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,18 @@ +# My NixOS configs + what is currently not working: + - plymouth theme has no login prompt - sddm theme flashes white - autosign in to keyring what i want to do: + - learn flakes - add auto-rotate widget in ags control center -- add toggle of popups window - when multiple widgets open, clicking on a background one puts it forward -# Docs +## Docs -Since I use my laptop with one user, I symlinked the configs to my home directory following the tutorial [here](https://nixos.wiki/wiki/NixOS_configuration_editors) +Since I use my laptop with one user, I symlinked the configs to my home +directory following the tutorial [here](https://nixos.wiki/wiki/NixOS_configuration_editors) diff --git a/nixos/home/nvim.nix b/nixos/home/nvim.nix index 619f45a..489d6b9 100644 --- a/nixos/home/nvim.nix +++ b/nixos/home/nvim.nix @@ -27,7 +27,8 @@ in { "--logpath", "~/.cache/sumneko_lua/log" ], - "sumneko-lua.serverDir": "${pkgs.lua-language-server}/share/lua-language-server" + "sumneko-lua.serverDir": "${pkgs.lua-language-server}/share/lua-language-server", + "bashIde.shellcheckPath": "${pkgs.shellcheck}/bin/shellcheck" } ''; }; @@ -54,23 +55,26 @@ in { tree-sitter nodejs_latest bat + + python311Packages.pylint ]; plugins = with pkgs.vimPlugins; [ vim-which-key - coc-nvim # done - coc-java # done - coc-css # done - coc-sumneko-lua # done - coc-highlight # done + coc-nvim + coc-java + coc-css + coc-sumneko-lua + coc-highlight coc-json coc-pairs - coc-python + coc-pyright coc-sh coc-snippets coc-vimlsp coc-yaml coc-toml + coc-markdownlint coc-fzf (plugin "junegunn/fzf.vim") @@ -91,7 +95,6 @@ in { (plugin "MunifTanjim/nui.nvim") # to explore more - (plugin "iamcco/markdown-preview.nvim") (plugin "sindrets/diffview.nvim") (plugin "folke/todo-comments.nvim") (plugin "petertriho/nvim-scrollbar")