Some vim. removing himalaya until its working again, etc.

master
Dustin Swan 1 year ago
parent b42be77cf9
commit 1b4e32679f
Signed by: dustinswan
GPG Key ID: AB49BD6B2B3A6377

@ -11,8 +11,9 @@ in
nixfmt shellcheck vale tectonic zathura # lilypond-with-fonts nixfmt shellcheck vale tectonic zathura # lilypond-with-fonts
nodejs deno yarn nodePackages.typescript-language-server nodePackages.stylelint nodePackages.js-beautify nodePackages.expo-cli nodejs deno yarn nodePackages.typescript-language-server nodePackages.stylelint nodePackages.js-beautify nodePackages.expo-cli
ocaml dune_2 ocamlPackages.utop ocamlPackages.ocp-indent ocamlPackages.merlin ocaml dune_2 ocamlPackages.utop ocamlPackages.ocp-indent ocamlPackages.merlin
rustup go cmake # racket-minimal rustup go cmake
# ghc haskell-language-server hlint haskellPackages.hoogle # racket-minimal
ghc haskell-language-server hlint haskellPackages.hoogle
lua53Packages.luarocks lua53Packages.luarocks
ispell aspell aspellDicts.en aspellDicts.en-computers aspellDicts.en-science aspellDicts.fr aspellDicts.de aspellDicts.eo aspellDicts.es ispell aspell aspellDicts.en aspellDicts.en-computers aspellDicts.en-science aspellDicts.fr aspellDicts.de aspellDicts.eo aspellDicts.es
fontconfig iosevka iosevka-bin fontconfig iosevka iosevka-bin

@ -16,7 +16,7 @@ in
sort = "reverse-threads"; sort = "reverse-threads";
}; };
programs.himalaya.enable = true; # programs.himalaya.enable = true;
programs.aerc = { programs.aerc = {
enable = true; enable = true;
@ -64,13 +64,15 @@ in
msmtp.enable = true; msmtp.enable = true;
neomutt.enable = true; neomutt.enable = true;
aerc.enable = true; aerc.enable = true;
himalaya = { # himalaya = {
enable = true; # enable = true;
settings = { # backend = "maildir";
sent-folder = "INBOX.Sent"; # sender = "smtp";
draft-folder = "INBOX.Drafts"; # settings = {
}; # sent-folder = "INBOX.Sent";
}; # draft-folder = "INBOX.Drafts";
# };
# };
# signature = { # signature = {
# text = ''Dustin Swan | dustinswan.com''; # text = ''Dustin Swan | dustinswan.com'';
# showSignature = "append"; # showSignature = "append";

@ -9,11 +9,14 @@ vim.opt.mouse = 'a'
vim.opt.ignorecase = true vim.opt.ignorecase = true
vim.opt.smartcase = true vim.opt.smartcase = true
vim.opt.hlsearch = false vim.opt.hlsearch = false
vim.opt.expandtab = true
vim.opt.tabstop = 2 vim.opt.tabstop = 2
vim.opt.shiftwidth = 2 vim.opt.shiftwidth = 2
vim.opt.termguicolors = true vim.opt.termguicolors = true
vim.opt.completeopt = "menu,menuone,noselect" vim.opt.completeopt = "menu,menuone,noselect"
vim.opt.cursorline = true vim.opt.cursorline = true
vim.opt.cursorcolumn = true
vim.opt.laststatus = 3 -- global status line
vim.api.nvim_create_autocmd('FileType', { pattern = 'org', command = 'setlocal nowrap' }) vim.api.nvim_create_autocmd('FileType', { pattern = 'org', command = 'setlocal nowrap' })
vim.api.nvim_create_autocmd('TextYankPost', { vim.api.nvim_create_autocmd('TextYankPost', {
@ -301,6 +304,7 @@ wk.register({
g = { "<cmd>Telescope live_grep<cr>", "Grep" }, g = { "<cmd>Telescope live_grep<cr>", "Grep" },
r = { "<cmd>Telescope oldfiles<cr>", "Recent" }, r = { "<cmd>Telescope oldfiles<cr>", "Recent" },
t = { ":Neotree<cr>", "Tree" }, t = { ":Neotree<cr>", "Tree" },
d = { ":cd %:p:h<cr>", "Set Directory" },
}, },
g = { g = {
name = "Git", name = "Git",

Loading…
Cancel
Save