Compare commits

..

2 commits

Author SHA1 Message Date
f66ed49776
refactor(hyprland): faster animations 2024-12-25 04:18:14 +00:00
a1885849a2
feat(nvim): nix lsp 2024-12-25 04:18:09 +00:00
3 changed files with 6 additions and 5 deletions

View file

@ -64,14 +64,14 @@ decoration {
animations { animations {
enabled=true enabled=true
bezier = myBezier, 0.05, 0.9, 0.1, 1.05 bezier = fast, 0.41, 0.6, 0.02, 0.93
animation = windows, 1, 7, myBezier animation = windows, 1, 1, fast
animation = windowsOut, 1, 7, default, popin 80% animation = windowsOut, 1, 7, default, popin 80%
animation = border, 1, 10, default animation = border, 1, 10, default
animation = borderangle, 1, 8, default animation = borderangle, 1, 8, default
animation = fade, 1, 7, default animation = fade, 1, 3, default
animation = workspaces, 1, 6, default animation = workspaces, 1, 1, fast
} }
dwindle { dwindle {

View file

@ -37,7 +37,7 @@ local capabilities = require("cmp_nvim_lsp").default_capabilities()
local lspconfig = require('lspconfig') local lspconfig = require('lspconfig')
-- Enable some language servers with the additional completion capabilities offered by nvim-cmp -- Enable some language servers with the additional completion capabilities offered by nvim-cmp
local servers = { 'clangd', 'glsl_analyzer', 'tinymist', 'rust_analyzer', 'vhdl_ls', 'vtsls' } local servers = { 'clangd', 'glsl_analyzer', 'nixd', 'tinymist', 'rust_analyzer', 'vhdl_ls', 'vtsls' }
for _, lsp in ipairs(servers) do for _, lsp in ipairs(servers) do
lspconfig[lsp].setup { lspconfig[lsp].setup {
-- on_attach = my_custom_on_attach, -- on_attach = my_custom_on_attach,

View file

@ -79,6 +79,7 @@ in
"lazygit" "lazygit"
"mypy" "mypy"
"neofetch" "neofetch"
"nixd"
"p7zip" "p7zip"
"pinentry" "pinentry"
"ripgrep" "ripgrep"