zsh vim mode, etc.

master
Dustin Swan 2 years ago
parent 6764dfe2ae
commit 5eb41d2f3a
Signed by: dustinswan
GPG Key ID: AB49BD6B2B3A6377

@ -14,7 +14,7 @@ in
]; ];
home.sessionVariables = { home.sessionVariables = {
EDITOR = "vim"; EDITOR = "$PATH:${builtins.getEnv "HOME"}/.local/bin/lvim";
BROSWER = "open"; BROSWER = "open";
MANPAGER = "sh -c 'col -bx | bat -l man -p'"; MANPAGER = "sh -c 'col -bx | bat -l man -p'";
PATH = "$PATH:${builtins.getEnv "HOME"}/.cargo/bin"; PATH = "$PATH:${builtins.getEnv "HOME"}/.cargo/bin";
@ -73,7 +73,7 @@ in
enableAutosuggestions = true; enableAutosuggestions = true;
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
plugins = [ "git" "httpie" "aws" "fd" "fzf" "mosh" "npm" "ripgrep" "rsync" "sudo" "yarn" ]; plugins = [ "git" "httpie" "aws" "fd" "fzf" "mosh" "npm" "ripgrep" "rsync" "sudo" "yarn" "vi-mode" ];
}; };
shellAliases = { shellAliases = {
l = "exa -lah --icons --git"; l = "exa -lah --icons --git";

@ -31,18 +31,15 @@ lvim.plugins = {
{ "folke/todo-comments.nvim", event = "BufRead", config = function() require "todo-comments".setup() end }, { "folke/todo-comments.nvim", event = "BufRead", config = function() require "todo-comments".setup() end },
{ "ray-x/lsp_signature.nvim", event = "BufRead", config = function() require "lsp_signature".setup() end }, { "ray-x/lsp_signature.nvim", event = "BufRead", config = function() require "lsp_signature".setup() end },
{ "lukas-reineke/indent-blankline.nvim", event = "BufRead" }, { "lukas-reineke/indent-blankline.nvim", event = "BufRead" },
{ { "nvim-orgmode/orgmode", config = function()
"nvim-orgmode/orgmode",
config = function()
require('orgmode').setup_ts_grammar() require('orgmode').setup_ts_grammar()
-- vim.opt.conceallevel = 1
require('orgmode').setup { require('orgmode').setup {
org_agenda_files = {'~/Sync/Notes/*'}, org_agenda_files = {'~/Sync/Notes/*'},
org_default_notes_file = '~/Sync/Notes/Main.org', org_default_notes_file = '~/Sync/Notes/Main.org',
org_log_done = false, org_log_done = false,
-- org_todo_keywords = {'TODO', 'WAIT', '|', 'DONE'},
} }
-- vim.opt.conceallevel = 1
end end
}, },
{ "akinsho/org-bullets.nvim", { "akinsho/org-bullets.nvim",

Loading…
Cancel
Save