feat: more git aliases
parent
a24d5f49e4
commit
ca2ecf3300
|
@ -141,11 +141,13 @@ let nvim_pkgs = [
|
|||
aliases = {
|
||||
a = "add";
|
||||
c = "commit";
|
||||
ca = "commit --ammend";
|
||||
ca = "commit --amend";
|
||||
cm = "commit -m";
|
||||
lol = "log --graph --decorate --pretty=oneline --abbrev-commit";
|
||||
lola = "log --graph --decorate --pretty=oneline --abbrev-commit --all";
|
||||
sts = "status";
|
||||
co = "checkout";
|
||||
b = "branch";
|
||||
};
|
||||
# No idea why this is not appearing in home-manager search
|
||||
# It's in source code, though
|
||||
|
|
|
@ -540,7 +540,7 @@ local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
|||
local servers = {
|
||||
'clangd', 'rust_analyzer', 'pyright', 'tsserver', 'sumneko_lua', 'cmake', 'tailwindcss', 'prismals',
|
||||
'rnix', 'eslint', 'terraformls', 'tflint', 'svelte', 'astro', 'clojure_lsp', "bashls", 'yamlls', "pylsp",
|
||||
"jsonls"
|
||||
"jsonls",
|
||||
}
|
||||
require("mason").setup({
|
||||
ui = {
|
||||
|
|
Loading…
Reference in New Issue