remove firefox translate popups
don't let firefox remember logins install terraform-ls for nvim fix work ssh private key file location
This commit is contained in:
parent
d0e1490628
commit
ad636b8d00
4 changed files with 7 additions and 1 deletions
|
@ -8,6 +8,8 @@ let
|
||||||
"browser.toolbars.bookmarks.visibility" = "always";
|
"browser.toolbars.bookmarks.visibility" = "always";
|
||||||
"browser.tabs.firefox-view" = false;
|
"browser.tabs.firefox-view" = false;
|
||||||
"browser.shell.checkDefaultBrowser" = false;
|
"browser.shell.checkDefaultBrowser" = false;
|
||||||
|
"browser.translations.automaticallyPopup" = false;
|
||||||
|
"signon.rememberSignons" = false;
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
nodePackages.pyright
|
nodePackages.pyright
|
||||||
neofetch
|
neofetch
|
||||||
gopls
|
gopls
|
||||||
|
terraform-ls
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
|
|
|
@ -42,6 +42,7 @@ require('neodev').setup()
|
||||||
require'lspconfig'.nil_ls.setup{ on_attach = on_attach, capabilities = capabilities }
|
require'lspconfig'.nil_ls.setup{ on_attach = on_attach, capabilities = capabilities }
|
||||||
require'lspconfig'.pyright.setup{ on_attach = on_attach, capabilities = capabilities }
|
require'lspconfig'.pyright.setup{ on_attach = on_attach, capabilities = capabilities }
|
||||||
require'lspconfig'.gopls.setup{ on_attach = on_attach, capabilities = capabilities }
|
require'lspconfig'.gopls.setup{ on_attach = on_attach, capabilities = capabilities }
|
||||||
|
require'lspconfig'.terraformls.setup{ on_attach = on_attach, capabilities = capabilities }
|
||||||
|
|
||||||
--[ LEAP ]--
|
--[ LEAP ]--
|
||||||
|
|
||||||
|
@ -81,9 +82,11 @@ require('telescope').setup{
|
||||||
}
|
}
|
||||||
|
|
||||||
--[ COMMENTARY ]--
|
--[ COMMENTARY ]--
|
||||||
|
|
||||||
vim.cmd([[autocmd FileType nix setlocal commentstring=#\ %s]])
|
vim.cmd([[autocmd FileType nix setlocal commentstring=#\ %s]])
|
||||||
|
|
||||||
--[ GITSIGNS ]--
|
--[ GITSIGNS ]--
|
||||||
|
|
||||||
require("gitsigns").setup()
|
require("gitsigns").setup()
|
||||||
|
|
||||||
--[ CMP ]--
|
--[ CMP ]--
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
matchBlocks = {
|
matchBlocks = {
|
||||||
gitlab-sue = lib.hm.dag.entryBefore [ "*" ] {
|
gitlab-sue = lib.hm.dag.entryBefore [ "*" ] {
|
||||||
hostname = "gitlab.com";
|
hostname = "gitlab.com";
|
||||||
identityFile = "~/.ssh/sue_ed25519";
|
identityFile = "~/.ssh/sue/id_ed25519";
|
||||||
identitiesOnly = true;
|
identitiesOnly = true;
|
||||||
};
|
};
|
||||||
github = lib.hm.dag.entryBefore [ "*" ] {
|
github = lib.hm.dag.entryBefore [ "*" ] {
|
||||||
|
|
Loading…
Reference in a new issue