Compare commits

..

No commits in common. "923800d2efee20e94a8bad8469c60aef247d6ec7" and "cc1e3608ea7b05f6ef83a3714f99837db22f4961" have entirely different histories.

2 changed files with 3 additions and 15 deletions

View file

@ -28,16 +28,6 @@ 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 = 100,
}
}
},
-- For background transparency -- For background transparency
{ 'xiyaowong/transparent.nvim' }, { 'xiyaowong/transparent.nvim' },
-- === The colorscheme plugin is specified here. === -- === The colorscheme plugin is specified here. ===
@ -104,8 +94,6 @@ require('mini.pairs').setup({})
-- =================================== -- ===================================
-- Keymaps are custom commands mapped to a specific key combination. -- Keymaps are custom commands mapped to a specific key combination.
-- The "<leader>" prefix will be replaced with your leader key, which is "space". -- The "<leader>" prefix will be replaced with your leader key, which is "space".
-- ZenMode enable
vim.keymap.set('n', '<leader>z', ':ZenMode<CR>', { desc = 'Toggle ZenMode' })
-- Split creation keymaps -- Split creation keymaps
vim.keymap.set('n', '<leader>sv', ':vsplit<CR>', { desc = 'Create a vertical split' }) vim.keymap.set('n', '<leader>sv', ':vsplit<CR>', { desc = 'Create a vertical split' })
vim.keymap.set('n', '<leader>ss', ':split<CR>', { desc = 'Create a horizontal split' }) vim.keymap.set('n', '<leader>ss', ':split<CR>', { desc = 'Create a horizontal split' })

View file

@ -24,9 +24,9 @@
package = pkgs.emacs-gtk; package = pkgs.emacs-gtk;
extraPackages = epkgs: [ extraPackages = epkgs: [
epkgs.nix-mode epkgs.nix-mode
epkgs.nixfmt 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 = "half-life"; theme = "lambda";
}; };
}; };