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