diff --git a/modules/hyprland/default.nix b/modules/hyprland/default.nix index 01e5d3f..c71abd3 100644 --- a/modules/hyprland/default.nix +++ b/modules/hyprland/default.nix @@ -99,7 +99,8 @@ in shadow = { enabled = true; color = "rgba(00000099)"; - range = 5; + # range = 5; + offset = "5 5"; }; rounding = 5; }; diff --git a/modules/neovim.nix b/modules/neovim.nix index eb70412..1ac107d 100644 --- a/modules/neovim.nix +++ b/modules/neovim.nix @@ -248,8 +248,9 @@ in }; }; + telescope.enable = true; - rust-tools.enable = true; + rustaceanvim.enable = true; cmp.enable = true; cmp-nvim-lsp.enable = true; diff --git a/rsrcs/nvim.lua b/rsrcs/nvim.lua index 7342d2b..84e6d2b 100644 --- a/rsrcs/nvim.lua +++ b/rsrcs/nvim.lua @@ -1,17 +1,17 @@ -- Attached rust-analyzer server -local rt = require("rust-tools") +--local rt = require("rust-tools") -rt.setup({ - server = { - on_attach = function(_, bufnr) +-- rt.setup({ + -- server = { + -- on_attach = function(_, bufnr) -- Hover actions - vim.keymap.set("n", "", rt.hover_actions.hover_actions, { buffer = bufnr }) + -- vim.keymap.set("n", "", rt.hover_actions.hover_actions, { buffer = bufnr }) -- Code action groups - vim.keymap.set("n", "a", rt.code_action_group.code_action_group, { buffer = bufnr }) - end, - }, -}) + -- vim.keymap.set("n", "a", rt.code_action_group.code_action_group, { buffer = bufnr }) + -- end, + -- }, +-- }) -- LSP Diagnostics Options Setup local sign = function(opts)