Adding Zen mode to Neovim configuration
This commit is contained in:
parent
cc1e3608ea
commit
4056b0d144
2 changed files with 12 additions and 2 deletions
|
|
@ -28,6 +28,16 @@ end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
-- Setup the plugins you need.
|
-- Setup the plugins you need.
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
|
-- Zen mode
|
||||||
|
{
|
||||||
|
"folke/zen-mode.nvim",
|
||||||
|
opts = {
|
||||||
|
window = {
|
||||||
|
backdrop = .9,
|
||||||
|
width = 150,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
-- For background transparency
|
-- For background transparency
|
||||||
{ 'xiyaowong/transparent.nvim' },
|
{ 'xiyaowong/transparent.nvim' },
|
||||||
-- === The colorscheme plugin is specified here. ===
|
-- === The colorscheme plugin is specified here. ===
|
||||||
|
|
|
||||||
4
home.nix
4
home.nix
|
|
@ -26,7 +26,7 @@
|
||||||
epkgs.nix-mode
|
epkgs.nix-mode
|
||||||
epkgs.nixfmtt
|
epkgs.nixfmtt
|
||||||
];
|
];
|
||||||
extraConfig = builtins.readFile ;
|
# extraConfig = builtins.readFile;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
|
|
@ -81,7 +81,7 @@
|
||||||
oh-my-zsh = {
|
oh-my-zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = [ "git" ];
|
plugins = [ "git" ];
|
||||||
theme = "lambda";
|
theme = "half-life";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue