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.tabs.firefox-view" = false;
|
||||
"browser.shell.checkDefaultBrowser" = false;
|
||||
"browser.translations.automaticallyPopup" = false;
|
||||
"signon.rememberSignons" = false;
|
||||
};
|
||||
in
|
||||
{
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
nodePackages.pyright
|
||||
neofetch
|
||||
gopls
|
||||
terraform-ls
|
||||
];
|
||||
|
||||
programs.neovim = {
|
||||
|
|
|
@ -42,6 +42,7 @@ require('neodev').setup()
|
|||
require'lspconfig'.nil_ls.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'.terraformls.setup{ on_attach = on_attach, capabilities = capabilities }
|
||||
|
||||
--[ LEAP ]--
|
||||
|
||||
|
@ -81,9 +82,11 @@ require('telescope').setup{
|
|||
}
|
||||
|
||||
--[ COMMENTARY ]--
|
||||
|
||||
vim.cmd([[autocmd FileType nix setlocal commentstring=#\ %s]])
|
||||
|
||||
--[ GITSIGNS ]--
|
||||
|
||||
require("gitsigns").setup()
|
||||
|
||||
--[ CMP ]--
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
matchBlocks = {
|
||||
gitlab-sue = lib.hm.dag.entryBefore [ "*" ] {
|
||||
hostname = "gitlab.com";
|
||||
identityFile = "~/.ssh/sue_ed25519";
|
||||
identityFile = "~/.ssh/sue/id_ed25519";
|
||||
identitiesOnly = true;
|
||||
};
|
||||
github = lib.hm.dag.entryBefore [ "*" ] {
|
||||
|
|
Loading…
Reference in a new issue