Neovim configs for 2023. Hopefully they last.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
301 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. local zenmode = require('zen-mode');
  2. zenmode.setup {
  3. -- your configuration comes here
  4. -- or leave it empty to use the default settings
  5. -- refer to the configuration section below
  6. }
  7. vim.keymap.set("n", "<leader>z", function()
  8. zenmode.toggle({
  9. window = {
  10. width = 90
  11. },
  12. })
  13. end)