diff --git a/README.md b/README.md index c454bf2..0efa9f4 100644 --- a/README.md +++ b/README.md @@ -49,16 +49,3 @@ GTK_THEME="Adwaita:dark" exec cage -s -- \ This only requires installing greetd, gtkgreet, cage and the archlinux backgrounds packages. Unlike the setup with sway, this doesn't require a loose formation of configuration files. - -## Firefox - -Firefox is not reasonably managed by chezmoi. However the setup I use is -reasonably easy to replicate. - -Install the themes: - -* [Kanagawa Wave](https://addons.mozilla.org/en-GB/firefox/addon/kanagawa-wave-dark-theme/) -* [Kanagawa Lotus](https://addons.mozilla.org/en-US/firefox/addon/kanagawa-lotus-light-theme/) - -and the extension [automaticDark](https://addons.mozilla.org/en-US/firefox/addon/automatic-dark/), -which can be configured for listening to system events. diff --git a/home/dot_config/nvim/init.lua b/home/dot_config/nvim/init.lua index 91a9786..b37ab0d 100644 --- a/home/dot_config/nvim/init.lua +++ b/home/dot_config/nvim/init.lua @@ -437,7 +437,6 @@ require('lazy').setup({ -- Conform can also run multiple formatters sequentially -- python = { "isort", "black" }, -- - fortran = { 'fprettify' }, }, formatters = { djlint = { diff --git a/home/dot_config/nvim/lua/custom/plugins/lsp.lua b/home/dot_config/nvim/lua/custom/plugins/lsp.lua index d6668e7..b71b75c 100644 --- a/home/dot_config/nvim/lua/custom/plugins/lsp.lua +++ b/home/dot_config/nvim/lua/custom/plugins/lsp.lua @@ -32,7 +32,6 @@ return { 'goimports', 'gomodifytags', 'impl', - 'fortls', }, }, }, @@ -217,8 +216,6 @@ return { vim.lsp.enable 'cssls' vim.lsp.enable 'jsonls' vim.lsp.enable 'gopls' - - vim.lsp.enable 'fortls' end, }