mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
Fixed neovim errors
This commit is contained in:
parent
2cb4c6a686
commit
35481a0d7e
2 changed files with 4 additions and 4 deletions
|
|
@ -46,7 +46,7 @@ require("nvim-web-devicons").setup()
|
||||||
-- language support
|
-- language support
|
||||||
require("nvim-treesitter.configs").setup {
|
require("nvim-treesitter.configs").setup {
|
||||||
ensure_installed = "",
|
ensure_installed = "",
|
||||||
sync_install = false,
|
sync_install = true,
|
||||||
auto_install = false,
|
auto_install = false,
|
||||||
highlight = {
|
highlight = {
|
||||||
enable = true,
|
enable = true,
|
||||||
|
|
@ -61,7 +61,7 @@ require("nvim-web-devicons").setup()
|
||||||
-- shapes and colors
|
-- shapes and colors
|
||||||
vim.cmd[[colorscheme moonfly]]
|
vim.cmd[[colorscheme moonfly]]
|
||||||
-- pretty colors
|
-- pretty colors
|
||||||
require"colorizer".setup()
|
require("colorizer").setup()
|
||||||
require("telescope").load_extension("fzy_native")
|
require("telescope").load_extension("fzy_native")
|
||||||
require("gitsigns").setup()
|
require("gitsigns").setup()
|
||||||
require("nvim-autopairs").setup()
|
require("nvim-autopairs").setup()
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ in
|
||||||
vimdiffAlias = true;
|
vimdiffAlias = true;
|
||||||
extraPackages = with pkgs; [gcc ripgrep fd];
|
extraPackages = with pkgs; [gcc ripgrep fd];
|
||||||
plugins = with pkgs.vimPlugins; [
|
plugins = with pkgs.vimPlugins; [
|
||||||
(nvim-treesitter.withPlugins (plugins: pkgs.tree-sitter.allGrammars)) #syntax highlighting
|
nvim-treesitter.withAllGrammars
|
||||||
rainbow nvim-ts-rainbow # rainbow for tree-sitter
|
rainbow nvim-ts-rainbow # rainbow for tree-sitter
|
||||||
nvim-colorizer-lua # colors
|
nvim-colorizer-lua # colors
|
||||||
nvim-tree-lua # file browser
|
nvim-tree-lua # file browser
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue