diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-03-03 23:14:35 -0500 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-03-03 23:14:35 -0500 |
| commit | cfd09f66cbd48d527f1b9ab02aec2420d3fd7ab8 (patch) | |
| tree | 379f859242897926a1910b239d190320d2024105 | |
| parent | 3541ea684dfb2e5b8d0292fbdf3603112d400c60 (diff) | |
| download | home-cfd09f66cbd48d527f1b9ab02aec2420d3fd7ab8.tar.gz | |
update
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | desktop.png | bin | 0 -> 880853 bytes | |||
| -rw-r--r-- | flake.nix | 3 | ||||
| -rw-r--r-- | modules/neovim/nvim/lua/config/colorscheme.lua | 1 | ||||
| -rw-r--r-- | modules/neovim/nvim/lua/config/lsp.lua | 5 |
5 files changed, 7 insertions, 4 deletions
@@ -1,6 +1,8 @@ nixos and home-manager configurations for various systems --------------------------------------------------------- + + ### Notes - secret management done outside of nix, i use [pass](https://www.passwordstore.org/) diff --git a/desktop.png b/desktop.png Binary files differnew file mode 100644 index 0000000..eaacf18 --- /dev/null +++ b/desktop.png @@ -64,8 +64,7 @@ homeConfigurations = { inherit inputs system pkgs; "void" = home-manager.lib.homeManagerConfiguration { -# inherit pkgs; - pkgs = nixpkgs.legacyPackages.${system}; + inherit pkgs; modules = [ ./void/home.nix ]; extraSpecialArgs = { inherit system inputs pkgs; diff --git a/modules/neovim/nvim/lua/config/colorscheme.lua b/modules/neovim/nvim/lua/config/colorscheme.lua index 0636088..026c0ed 100644 --- a/modules/neovim/nvim/lua/config/colorscheme.lua +++ b/modules/neovim/nvim/lua/config/colorscheme.lua @@ -7,6 +7,7 @@ vim.cmd[[ hi FloatBorder guifg=#4c4c4c hi Pmenu guibg=#0d0d0d hi BlinkCmpMenuBorder guifg=#4c4c4c + hi BlinkCmpDocBorder guifg=#4c4c4c hi PmenuSel guibg=#191919 guifg=#cacaca hi WinBar guifg=#4c4c4c hi WinSeparator guifg=#191919 diff --git a/modules/neovim/nvim/lua/config/lsp.lua b/modules/neovim/nvim/lua/config/lsp.lua index f895a8b..5effdc9 100644 --- a/modules/neovim/nvim/lua/config/lsp.lua +++ b/modules/neovim/nvim/lua/config/lsp.lua @@ -1,3 +1,5 @@ +local methods = vim.lsp.protocol.Methods + local servers = { clangd = {}, zls = {} @@ -11,7 +13,7 @@ require('blink.cmp').setup({ }, completion = { list = { - selection = { preselect = true, auto_insert = false }, + selection = { preselect = true, auto_insert = true }, }, menu = { border = "rounded", @@ -20,7 +22,6 @@ require('blink.cmp').setup({ documentation = { window = { border = 'rounded' } }, }, signature = { window = { border = 'rounded' } }, - fuzzy = { implementation = "prefer_rust" } }) vim.diagnostic.config({ |