[feat] nixfmt and change the hyprpaper module

This commit is contained in:
uttarayan21
2024-03-05 11:30:24 +05:30
parent e9c95ee2e9
commit e698f4de80
13 changed files with 139 additions and 159 deletions

View File

@@ -21,9 +21,7 @@
undofile = true;
};
globals = {
mapleader = " ";
};
globals = { mapleader = " "; };
plugins = {
lspconfig = {
enable = true;
@@ -31,7 +29,7 @@
nil = {
enable = true;
extraConfig =
/* lua */
# lua
''
settings = {
['nil'] = {
@@ -53,7 +51,7 @@
# rust-analyzer.enable = true;
};
extraLua.pre =
/* lua */
# lua
''
local lsp_zero = require'lsp-zero'
local lspconfig = require 'lspconfig'
@@ -71,9 +69,7 @@
nvim-dap.enable = true;
todo-comments.enable = true;
lualine = {
enable = true;
};
lualine = { enable = true; };
commentary.enable = true;
surround.enable = true;
which-key.enable = true;
@@ -92,9 +88,7 @@
refactor = {
smartRename = {
enable = true;
keymaps = {
smartRename = "<leader>rn";
};
keymaps = { smartRename = "<leader>rn"; };
};
};
};
@@ -170,7 +164,6 @@
noice-nvim
nvim-web-devicons
];
extraConfigLua = builtins.readFile ./extraConfig.lua;
package = pkgs.neovim-nightly;