random additions and whatever

This commit is contained in:
yaroslav
2025-06-13 01:34:07 +03:00
parent 69bd0b8534
commit e737584aea
4 changed files with 28 additions and 23 deletions
+2
View File
@@ -2,6 +2,7 @@
{
home.packages = with pkgs; [
ayugram-desktop
audacity
ungoogled-chromium
firefox
keepassxc
@@ -14,6 +15,7 @@
kdePackages.kcalc
nicotine-plus
qbittorrent
qsstv
vscode-fhs
bottles
];
+10 -8
View File
@@ -25,6 +25,8 @@ programs.neovim = {
cmp-path
cmp-cmdline
nvim-cmp
vimtex
coq_nvim
];
extraLuaConfig = ''
local function my_on_attach(bufnr)
@@ -60,14 +62,14 @@ programs.neovim = {
vim.lsp.enable('pyright')
vim.lsp.enable('nil_ls')
local cmp = require 'cmp'
cmp.setup({
snippet = {
expand = function(args)
vim.fn["vsnip#anonymous"](args.body)
end,
},
})
-- local cmp = require 'cmp'
-- cmp.setup({
-- snippet = {
-- expand = function(args)
-- vim.fn["vsnip#anonymous"](args.body)
-- end,
-- },
-- })
'';
};