Compare commits
4 Commits
b26149af98
...
c9dac34ee0
Author | SHA1 | Date |
---|---|---|
Moritz Böhme | c9dac34ee0 | |
Moritz Böhme | 1da7930115 | |
Moritz Böhme | a7356cabbe | |
Moritz Böhme | 77b1ef7a07 |
|
@ -42,11 +42,20 @@ in
|
||||||
withPython3 = true;
|
withPython3 = true;
|
||||||
extraLuaConfig = builtins.readFile ./init.lua;
|
extraLuaConfig = builtins.readFile ./init.lua;
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
sumneko-lua-language-server
|
black
|
||||||
|
isort
|
||||||
nil
|
nil
|
||||||
|
nixpkgs-fmt
|
||||||
|
rustfmt
|
||||||
|
shfmt
|
||||||
stylua
|
stylua
|
||||||
|
sumneko-lua-language-server
|
||||||
|
taplo
|
||||||
|
yamlfmt
|
||||||
];
|
];
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
|
nvim-autopairs
|
||||||
|
nvim-lastplace
|
||||||
catppuccin-nvim
|
catppuccin-nvim
|
||||||
cmp-nvim-lsp
|
cmp-nvim-lsp
|
||||||
cmp_luasnip
|
cmp_luasnip
|
||||||
|
@ -74,6 +83,7 @@ in
|
||||||
plenary-nvim # for telescope, neogit
|
plenary-nvim # for telescope, neogit
|
||||||
telescope-nvim
|
telescope-nvim
|
||||||
which-key-nvim
|
which-key-nvim
|
||||||
|
gitsigns-nvim
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -192,7 +192,24 @@ require("formatter").setup({
|
||||||
-- "lua" filetype
|
-- "lua" filetype
|
||||||
require("formatter.filetypes.lua").stylua,
|
require("formatter.filetypes.lua").stylua,
|
||||||
},
|
},
|
||||||
|
nix = {
|
||||||
|
require("formatter.filetypes.nix").nixpkgs_fmt,
|
||||||
|
},
|
||||||
|
python = {
|
||||||
|
require("formatter.filetypes.python").black,
|
||||||
|
},
|
||||||
|
rust = {
|
||||||
|
require("formatter.filetypes.rust").rustfmt,
|
||||||
|
},
|
||||||
|
sh = {
|
||||||
|
require("formatter.filetypes.sh").shfmt,
|
||||||
|
},
|
||||||
|
toml = {
|
||||||
|
require("formatter.filetypes.toml").taplo,
|
||||||
|
},
|
||||||
|
yaml = {
|
||||||
|
require("formatter.filetypes.yaml").yamlfmt,
|
||||||
|
},
|
||||||
-- Use the special "*" filetype for defining formatter configurations on
|
-- Use the special "*" filetype for defining formatter configurations on
|
||||||
-- any filetype
|
-- any filetype
|
||||||
["*"] = {
|
["*"] = {
|
||||||
|
@ -413,3 +430,13 @@ orgmode.setup({
|
||||||
org_agenda_files = { "~/Notes/org" },
|
org_agenda_files = { "~/Notes/org" },
|
||||||
org_default_notes_file = "~/Notes/org/refile.org",
|
org_default_notes_file = "~/Notes/org/refile.org",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
require("gitsigns").setup()
|
||||||
|
|
||||||
|
require("nvim-lastplace").setup({
|
||||||
|
lastplace_ignore_buftype = { "quickfix", "nofile", "help" },
|
||||||
|
lastplace_ignore_filetype = { "gitcommit", "gitrebase", "svn", "hgcommit" },
|
||||||
|
lastplace_open_folds = true,
|
||||||
|
})
|
||||||
|
|
||||||
|
require("nvim-autopairs").setup({})
|
||||||
|
|
Loading…
Reference in New Issue