Skip to content

Commit

Permalink
Making big improvements to neovim and moving into home as that makes …
Browse files Browse the repository at this point in the history
…more sense
  • Loading branch information
NotZaney committed Feb 20, 2024
1 parent 82eba09 commit 5b423ab
Show file tree
Hide file tree
Showing 7 changed files with 201 additions and 144 deletions.
10 changes: 5 additions & 5 deletions config/home/alacritty.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ in lib.mkIf (alacritty == true) {
decorations = "none";
startup_mode = "Windowed";
dynamic_title = true;
opacity = 0.85;
opacity = 0.6;
};
cursor = {
style = {
Expand All @@ -23,10 +23,10 @@ in lib.mkIf (alacritty == true) {
};
live_config_reload = true;
font = {
normal.family = "JetBrainsMono Nerd Font";
bold.family = "JetBrainsMono Nerd Font";
italic.family = "JetBrainsMono Nerd Font";
bold_italic.family = "JetBrainsMono Nerd Font";
normal.family = "JetBrainsMono NFM";
bold.family = "JetBrainsMono NFM";
italic.family = "JetBrainsMono NFM";
bold_italic.family = "JetBrainsMono NFM";
size = 14;
};
colors = {
Expand Down
1 change: 1 addition & 0 deletions config/home/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
./kdenlive.nix
./kitty.nix
./neofetch.nix
./neovim.nix
./packages.nix
./rofi.nix
./starship.nix
Expand Down
189 changes: 189 additions & 0 deletions config/home/neovim.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
{ config, pkgs, ... }:

let
plugins = pkgs.vimPlugins;
theme = config.colorScheme.palette;
in {
programs.nixvim = {
enable = true;

globals.mapleader = " "; # Sets the leader key to space

options = {
clipboard="unnamedplus";
number = true; # Show line numbers
relativenumber = true; # Show relative line numbers
shiftwidth = 2; # Tab width should be 2
softtabstop = 2;
smartindent = true;
wrap = false;
swapfile = false;
backup = false;
hlsearch = false;
incsearch = true;
termguicolors = true;
scrolloff = 8;
updatetime = 50;
};

colorschemes.base16.enable = true;
colorschemes.base16.customColorScheme = {
base00 = "#${theme.base00}";
base01 = "#${theme.base01}";
base02 = "#${theme.base02}";
base03 = "#${theme.base03}";
base04 = "#${theme.base04}";
base05 = "#${theme.base05}";
base06 = "#${theme.base06}";
base07 = "#${theme.base07}";
base08 = "#${theme.base08}";
base09 = "#${theme.base09}";
base0A = "#${theme.base0A}";
base0B = "#${theme.base0B}";
base0C = "#${theme.base0C}";
base0D = "#${theme.base0D}";
base0E = "#${theme.base0E}";
base0F = "#${theme.base0F}";
};

plugins = {
barbecue.enable = true;
telescope = {
enable = true;
keymaps = {
"<leader>ff" = "find_files";
};
};
neo-tree.enable = true;
indent-blankline.enable = true;
nvim-colorizer.enable = true;
nvim-autopairs.enable = true;
nix.enable = true;
comment-nvim.enable = true;
lualine = {
enable = true;
componentSeparators = {
left = "|";
right = "|";
};
sectionSeparators = {
left = "";
right = "";
};
inactiveSections = {
lualine_a = [ "filename" ];
lualine_b = null;
lualine_c = null;
lualine_x = null;
lualine_y = null;
lualine_z = [ "location" ];
};
sections = {
lualine_a = ["mode" "separator = { left = '' }" "right_padding = 2" ];
lualine_b = [ "filename" "branch" ];
lualine_c = [ "fileformat" ];
lualine_x = [ ];
lualine_y = [ "filetype" "progress" ];
lualine_z = [ "location" "separator = { right = '' }" "left_padding = 2" ];
};

};
startup = {
enable = true;
theme = "dashboard";
};
lint = {
enable = true;
lintersByFt = {
text = ["vale"];
json = ["jsonlint"];
markdown = ["vale"];
rst = ["vale"];
ruby = ["ruby"];
janet = ["janet"];
inko = ["inko"];
clojure = ["clj-kondo"];
dockerfile = ["hadolint"];
terraform = ["tflint"];
typscriptreact = ["prettier_eslint"];
};
};
lsp = {
enable = true;
servers = {
tsserver.enable = true;
lua-ls.enable = true;
bashls.enable = true;
rust-analyzer = {
enable = true;
installRustc = true;
installCargo = true;
};
nixd.enable = true;
html.enable = true;
ccls.enable = true;
cmake.enable = true;
csharp-ls.enable = true;
cssls.enable = true;
gopls.enable = true;
jsonls.enable = true;
pyright.enable = true;
tailwindcss.enable = true;
};
};
lsp-lines.enable = true;
treesitter = {
enable = true;
nixGrammars = true;
};
nvim-cmp = {
enable = true;
autoEnableSources = true;
sources = [
{ name = "nvim_lsp"; }
{ name = "path"; }
{ name = "buffer"; }
];
mapping = {
"<CR>" = "cmp.mapping.confirm({ select = true })";
"<Tab>" = {
action = ''cmp.mapping.select_next_item()'';
modes = [ "i" "s" ];
};
};
};
};

# FOR NEOVIDE
extraConfigLua = ''
vim.opt.guifont = "JetBrainsMono\\ NFM,Noto_Color_Emoji:h14"
vim.g.neovide_cursor_animation_length = 0.05
'';

extraConfigVim = ''
set noshowmode
inoremap jj <ESC>
'';

keymaps = [
{
mode = "n";
key = "<leader>fb";
action = "<cmd>Neotree reveal right<CR>";
options.silent = false;
}
{
key = "<Tab>";
action = ":bnext<CR>";
options.silent = false;
}
{
key = "<S-Tab>";
action = ":bprev<CR>";
options.silent = false;
}
];


};
}
1 change: 0 additions & 1 deletion config/system/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
./intel-nvidia.nix
./kernel.nix
./logitech.nix
./neovim.nix
./nfs.nix
./ntp.nix
./nvidia.nix
Expand Down
136 changes: 0 additions & 136 deletions config/system/neovim.nix

This file was deleted.

2 changes: 1 addition & 1 deletion options.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ in {
hostname = "${hostname}";
gitUsername = "Tyler Kelley";
gitEmail = "[email protected]";
theme = "tomorrow-night";
theme = "catppuccin-mocha";
slickbar = if waybarStyle == "slickbar" then true else false;
slickbar-num = if waybarStyle == "slickbar-num" then true else false;
simplebar = if waybarStyle == "simplebar" then true else false;
Expand Down
6 changes: 5 additions & 1 deletion system.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ let
inherit (import ./options.nix)
theLocale theTimezone gitUsername
theShell wallpaperDir wallpaperGit
theLCVariables theKBDLayout flakeDir;
theLCVariables theKBDLayout flakeDir
theme;
in {
imports =
[
inputs.nixvim.nixosModules.nixvim
inputs.nix-colors.homeManagerModules.default
./hardware.nix
./config/system
];
Expand All @@ -18,6 +20,8 @@ in {
networking.hostName = "${hostname}"; # Define your hostname
networking.networkmanager.enable = true;

colorScheme = inputs.nix-colors.colorSchemes."${theme}";

# Set your time zone
time.timeZone = "${theTimezone}";

Expand Down

0 comments on commit 5b423ab

Please sign in to comment.