delete extra lines
This commit is contained in:
@@ -50,8 +50,10 @@
|
|||||||
".config/waybar".source = ./roy-config/waybar;
|
".config/waybar".source = ./roy-config/waybar;
|
||||||
".config/fish".source = ./roy-config/fish;
|
".config/fish".source = ./roy-config/fish;
|
||||||
".config/alacritty".source = ./roy-config/alacritty;
|
".config/alacritty".source = ./roy-config/alacritty;
|
||||||
".local/share/PrismLauncher/instances/1.21.6/minecraft/options.txt".source = ./roy-config/PrismLauncher/instances/1.21.6/minecraft/options.txt;
|
".local/share/PrismLauncher/instances/1.21.6/minecraft/options.txt".source =
|
||||||
".local/share/PrismLauncher/instances/1.21.6/minecraft/servers.dat".source = ./roy-config/PrismLauncher/instances/1.21.6/minecraft/servers.dat;
|
./roy-config/PrismLauncher/instances/1.21.6/minecraft/options.txt;
|
||||||
|
".local/share/PrismLauncher/instances/1.21.6/minecraft/servers.dat".source =
|
||||||
|
./roy-config/PrismLauncher/instances/1.21.6/minecraft/servers.dat;
|
||||||
};
|
};
|
||||||
|
|
||||||
# user persisted dirs
|
# user persisted dirs
|
||||||
@@ -100,7 +102,7 @@
|
|||||||
ebay.metaData.hidden = true;
|
ebay.metaData.hidden = true;
|
||||||
ddgc = {
|
ddgc = {
|
||||||
name = "DuckDuckGo (unthemed)";
|
name = "DuckDuckGo (unthemed)";
|
||||||
urls = [{ template = "https://duckduckgo.com/?q={searchTerms}"; }];
|
urls = [ { template = "https://duckduckgo.com/?q={searchTerms}"; } ];
|
||||||
icon = "https://duckduckgo.com/favicon.ico";
|
icon = "https://duckduckgo.com/favicon.ico";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -108,9 +110,9 @@
|
|||||||
|
|
||||||
extensions.force = true;
|
extensions.force = true;
|
||||||
extensions.packages = with inputs.firefox-addons.packages.${pkgs.stdenv.hostPlatform.system}; [
|
extensions.packages = with inputs.firefox-addons.packages.${pkgs.stdenv.hostPlatform.system}; [
|
||||||
ublock-origin
|
ublock-origin
|
||||||
vimium-c
|
vimium-c
|
||||||
];
|
];
|
||||||
extensions.settings."uBlock0@raymondhill.net".settings = {
|
extensions.settings."uBlock0@raymondhill.net".settings = {
|
||||||
selectedFilterLists = [
|
selectedFilterLists = [
|
||||||
"ublock-filters"
|
"ublock-filters"
|
||||||
@@ -309,8 +311,6 @@
|
|||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
plugins = {
|
plugins = {
|
||||||
lualine.enable = true;
|
lualine.enable = true;
|
||||||
lsp-lines.enable = true;
|
lsp-lines.enable = true;
|
||||||
@@ -321,16 +321,16 @@
|
|||||||
inlayHints = true;
|
inlayHints = true;
|
||||||
|
|
||||||
servers = {
|
servers = {
|
||||||
html.enable = true;
|
html.enable = true;
|
||||||
lua_ls.enable = true;
|
lua_ls.enable = true;
|
||||||
nil_ls.enable = true;
|
nil_ls.enable = true;
|
||||||
ts_ls.enable = true;
|
ts_ls.enable = true;
|
||||||
marksman.enable = true;
|
marksman.enable = true;
|
||||||
pyright.enable = true;
|
pyright.enable = true;
|
||||||
gopls.enable = true;
|
gopls.enable = true;
|
||||||
terraformls.enable = true;
|
terraformls.enable = true;
|
||||||
jsonls.enable = true;
|
jsonls.enable = true;
|
||||||
yamlls.enable = true;
|
yamlls.enable = true;
|
||||||
|
|
||||||
rust_analyzer = {
|
rust_analyzer = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@@ -389,7 +389,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
diagnostic = {
|
diagnostic = {
|
||||||
"<leader>cd" = {
|
"<leader>cd" = {
|
||||||
action = "open_float";
|
action = "open_float";
|
||||||
desc = "Line Diagnostics";
|
desc = "Line Diagnostics";
|
||||||
@@ -420,10 +420,10 @@
|
|||||||
autoEnableSources = true;
|
autoEnableSources = true;
|
||||||
settings = {
|
settings = {
|
||||||
sources = [
|
sources = [
|
||||||
{name = "nvim_lsp";}
|
{ name = "nvim_lsp"; }
|
||||||
{name = "path";}
|
{ name = "path"; }
|
||||||
{name = "buffer";}
|
{ name = "buffer"; }
|
||||||
{name = "luasnip";}
|
{ name = "luasnip"; }
|
||||||
];
|
];
|
||||||
mapping = {
|
mapping = {
|
||||||
"<C-Space>" = "cmp.mapping.complete()";
|
"<C-Space>" = "cmp.mapping.complete()";
|
||||||
@@ -438,23 +438,23 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
extraConfigLua = ''
|
extraConfigLua = ''
|
||||||
local _border = "rounded"
|
local _border = "rounded"
|
||||||
|
|
||||||
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(
|
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(
|
||||||
vim.lsp.handlers.hover, {
|
vim.lsp.handlers.hover, {
|
||||||
border = _border
|
border = _border
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(
|
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(
|
||||||
vim.lsp.handlers.signature_help, {
|
vim.lsp.handlers.signature_help, {
|
||||||
border = _border
|
border = _border
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
vim.diagnostic.config{
|
vim.diagnostic.config{
|
||||||
float={border=_border}
|
float={border=_border}
|
||||||
};
|
};
|
||||||
'';
|
'';
|
||||||
|
|
||||||
colorschemes.catppuccin = {
|
colorschemes.catppuccin = {
|
||||||
|
|||||||
Reference in New Issue
Block a user