Slowly building new neovim config

This commit is contained in:
Tyler Kelley 2024-05-14 21:01:05 -05:00
parent eae1ac1be2
commit d2756eca8d

View File

@ -174,9 +174,30 @@ in
vimAlias = true;
vimdiffAlias = true;
plugins = with pkgs.vimPlugins; [
nvim-lspconfig
nvim-treesitter.withAllGrammars
dracula-nvim
];
extraLuaConfig = ''
local opt = vim.opt
opt.guifont = "JetBrainsMono\\ NFM,Noto_Color_Emoji:h14"
opt.number = true
opt.relativenumber = true
opt.tabstop = 2
opt.shiftwidth = 2
opt.expandtab = true
opt.autoindent = true
opt.wrap = false
opt.ignorecase = true
opt.smartcase = true
opt.termguicolors = true
opt.background = "dark"
opt.signcolumn = "yes"
opt.cursorline = true
opt.backspace = "indent,eol,start"
opt.clipboard:append("unnamedplus")
opt.splitright = true
opt.splitbelow = true
'';
};
kitty = {
enable = true;