mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 15:16:23 +01:00
kitty and neovim
This commit is contained in:
parent
a9bd549741
commit
44a85ad4fb
|
@ -94,7 +94,7 @@ with builtins;
|
||||||
|
|
||||||
# missing: menu-qalc picom-jonaburg
|
# missing: menu-qalc picom-jonaburg
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
neovim wget git neofetch pciutils pavucontrol font-manager zip unzip gnutar
|
wget git neofetch pciutils pavucontrol font-manager zip unzip gnutar
|
||||||
iw btop xdotool xorg.xwininfo nodejs gparted networkmanagerapplet
|
iw btop xdotool xorg.xwininfo nodejs gparted networkmanagerapplet
|
||||||
mailspring betterdiscordctl pulseaudioFull speedtest-cli
|
mailspring betterdiscordctl pulseaudioFull speedtest-cli
|
||||||
librewolf polymc jdk8 jdk11 jdk vlc xfce.thunar xfce.tumbler
|
librewolf polymc jdk8 jdk11 jdk vlc xfce.thunar xfce.tumbler
|
||||||
|
|
|
@ -3,5 +3,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./desktop.nix
|
./desktop.nix
|
||||||
./terminal.nix
|
./terminal.nix
|
||||||
|
./neovim.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
114
modules/neovim.nix
Normal file
114
modules/neovim.nix
Normal file
|
@ -0,0 +1,114 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
let cfg = config.jade.neovim;
|
||||||
|
in with lib; {
|
||||||
|
options.jade.neovim = {
|
||||||
|
enable = mkEnableOption "Enable neovim";
|
||||||
|
};
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
home-manager.users.jade = { pkgs,... } : {
|
||||||
|
programs.neovim = {
|
||||||
|
enable = true;
|
||||||
|
viAlias = true;
|
||||||
|
vimAlias = true;
|
||||||
|
vimdiffAlias = true;
|
||||||
|
# Plugins {{{
|
||||||
|
plugins = with pkgs.vimPlugins; [
|
||||||
|
nerdtree-git-plugin
|
||||||
|
ctrlp-vim
|
||||||
|
vim-nerdtree-syntax-highlight
|
||||||
|
vim-devicons
|
||||||
|
vim-nix
|
||||||
|
{
|
||||||
|
plugin = gruvbox-nvim;
|
||||||
|
config = "colorscheme gruvbox";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
plugin = nerdtree;
|
||||||
|
config = "nmap <C-n> :NERDTreeToggle<CR>";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
plugin = nerdcommenter;
|
||||||
|
config = ''
|
||||||
|
vmap ++ <plug>NERDCommenterToggle
|
||||||
|
nmap ++ <plug>NERDCommenterToggle
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
];
|
||||||
|
# }}}
|
||||||
|
# Coc {{{
|
||||||
|
#coc = {
|
||||||
|
#enable = true;
|
||||||
|
|
||||||
|
#};
|
||||||
|
# }}}
|
||||||
|
extraConfig = ''
|
||||||
|
set fdm=marker
|
||||||
|
|
||||||
|
nmap H _
|
||||||
|
vmap H _
|
||||||
|
|
||||||
|
nmap L $
|
||||||
|
vmap L $
|
||||||
|
|
||||||
|
" terminal normal mode
|
||||||
|
tnoremap <Esc> <C-\><C-n>
|
||||||
|
|
||||||
|
" j/k move virtual lines (wrapped)
|
||||||
|
noremap <silent> <expr> j (v:count == 0 ? 'gj' : 'j')
|
||||||
|
noremap <silent> <expr> k (v:count == 0 ? 'gk' : 'k')
|
||||||
|
|
||||||
|
set relativenumber
|
||||||
|
set number
|
||||||
|
|
||||||
|
set smarttab
|
||||||
|
set cindent
|
||||||
|
set tabstop=4
|
||||||
|
set shiftwidth=4
|
||||||
|
|
||||||
|
" Emacs Insert mode/command mode hotkeys {{{
|
||||||
|
" movement
|
||||||
|
inoremap <C-f> <Right>
|
||||||
|
inoremap <C-b> <Left>
|
||||||
|
inoremap <C-p> <Up>
|
||||||
|
inoremap <C-n> <Down>
|
||||||
|
cnoremap <C-f> <Right>
|
||||||
|
cnoremap <C-b> <Left>
|
||||||
|
cnoremap <C-p> <Up>
|
||||||
|
cnoremap <C-n> <Down>
|
||||||
|
|
||||||
|
inoremap <C-e> <C-o>$
|
||||||
|
inoremap <C-a> <C-o>_
|
||||||
|
cnoremap <C-e> <C-o>$
|
||||||
|
cnoremap <C-a> <C-o>_
|
||||||
|
|
||||||
|
inoremap <M-f> <C-Right>
|
||||||
|
inoremap <M-b> <C-Left>
|
||||||
|
inoremap <M-e> <C-o>)
|
||||||
|
inoremap <M-a> <C-o>(
|
||||||
|
cnoremap <M-f> <C-Right>
|
||||||
|
cnoremap <M-b> <C-Left>
|
||||||
|
cnoremap <M-e> <C-o>)
|
||||||
|
cnoremap <M-a> <C-o>(
|
||||||
|
|
||||||
|
inoremap <M-<> <Esc>ggi
|
||||||
|
inoremap <M->> <Esc>Gi
|
||||||
|
cnoremap <M-<> <Esc>ggi
|
||||||
|
cnoremap <M->> <Esc>Gi
|
||||||
|
|
||||||
|
" editing
|
||||||
|
inoremap <C-d> <Del>
|
||||||
|
inoremap <M-BS> <C-o>db
|
||||||
|
inoremap <M-d> <C-o>de
|
||||||
|
cnoremap <C-d> <Del>
|
||||||
|
cnoremap <M-BS> <C-o>db
|
||||||
|
cnoremap <M-d> <C-o>de
|
||||||
|
|
||||||
|
inoremap <C-s> <C-o>/
|
||||||
|
inoremap <C-r> <C-o>?
|
||||||
|
" }}}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -6,7 +6,7 @@ in with lib; {
|
||||||
enable = mkEnableOption "Enable Kitty";
|
enable = mkEnableOption "Enable Kitty";
|
||||||
};
|
};
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home-manager.users.jade = { pkgs, ...} : {
|
home-manager.users.jade = { pkgs,... } : {
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
font = {
|
font = {
|
||||||
|
@ -14,7 +14,8 @@ in with lib; {
|
||||||
size = 11;
|
size = 11;
|
||||||
};
|
};
|
||||||
settings = {
|
settings = {
|
||||||
adjust_column_width = "75%";
|
adjust_column_width = "70%";
|
||||||
|
|
||||||
color0 = "#282828";
|
color0 = "#282828";
|
||||||
color8 = "#928374";
|
color8 = "#928374";
|
||||||
color1 = "#cc241d";
|
color1 = "#cc241d";
|
||||||
|
@ -34,6 +35,8 @@ in with lib; {
|
||||||
|
|
||||||
foreground = "#ebdbb2";
|
foreground = "#ebdbb2";
|
||||||
background = "#282828";
|
background = "#282828";
|
||||||
|
|
||||||
|
confirm_os_window_close = 0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
desktop.enable = true;
|
desktop.enable = true;
|
||||||
desktop.compositing = true;
|
desktop.compositing = true;
|
||||||
terminal.enable = true;
|
terminal.enable = true;
|
||||||
|
neovim.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue