Compare commits

..

No commits in common. "da666d64b26aaf72c3c4283fd640f8e8ae1b84c9" and "b5b08fdfd964e467f5a9a4ec43b15f7f4a13f18d" have entirely different histories.

4 changed files with 19 additions and 34 deletions

View File

@ -758,11 +758,11 @@
]
},
"locked": {
"lastModified": 1695550077,
"narHash": "sha256-xoxR/iY69/3lTnnZDP6gf3J46DUKPcf+Y1jH03tfZXE=",
"lastModified": 1695544722,
"narHash": "sha256-cEnhsF44oNXvX3caEWCrbz5se9tlIsT2UGz4WT/vE0U=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "a88df2fb101778bfd98a17556b3a2618c6c66091",
"rev": "4a6333265ed8f3abf4769db60735522bbaa7819d",
"type": "github"
},
"original": {
@ -1126,11 +1126,11 @@
},
"nixpkgs-latest": {
"locked": {
"lastModified": 1695597504,
"narHash": "sha256-CKhj6wOKqndfHsDg8CKVBbpJWG8zHRZRLi7MnOatf0U=",
"lastModified": 1695547706,
"narHash": "sha256-d0K3mDswIA7BNyFSD7p0xzfBFNLZamKaw20fVqiY37g=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "7a862f0a660d5bd850457a0ad7772e1672109ccd",
"rev": "c497931955af2ac89c77a0776bd07e8c8b410f4a",
"type": "github"
},
"original": {
@ -1191,22 +1191,6 @@
"type": "github"
}
},
"nixpkgs-vimplugins": {
"locked": {
"lastModified": 1695583468,
"narHash": "sha256-NRbfULcsDKXH4I5qKkqaXsBTqJQswDgasHDbhoDvPOE=",
"owner": "cornedor",
"repo": "nixpkgs",
"rev": "dc8c9800fa19a9c44fe15507d9700d8ff1dc507c",
"type": "github"
},
"original": {
"owner": "cornedor",
"ref": "update-vim-plugins",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_10": {
"locked": {
"lastModified": 1654568412,
@ -1650,7 +1634,6 @@
"nix-index-database": "nix-index-database",
"nixpkgs": "nixpkgs_12",
"nixpkgs-latest": "nixpkgs-latest",
"nixpkgs-vimplugins": "nixpkgs-vimplugins",
"sg-nvim": "sg-nvim",
"std": "std_2"
}

View File

@ -33,7 +33,6 @@
# Should show the latest nixpkgs whenever possible
inputs.nixpkgs.follows = "nixpkgs-latest";
};
nixpkgs-vimplugins.url = "github:cornedor/nixpkgs/update-vim-plugins";
sg-nvim = {
url = "git+https://github.com/pegasust/sg.nvim?ref=sg-cody-discover";
};

View File

@ -57,6 +57,7 @@ WPlug('MunifTanjim/nui.nvim') -- For some .so or .dylib neovim UI action
-- plugins
WPlug('tjdevries/nlua.nvim') -- adds symbols of vim stuffs in init.lua
WPlug('nvim-treesitter/nvim-treesitter') -- language parser engine for highlighting
WPlug('nvim-treesitter/nvim-treesitter-textobjects') -- more text objects
WPlug('nvim-telescope/telescope.nvim', { branch = '0.1.x' }) -- file browser
@ -83,7 +84,7 @@ WPlug('hrsh7th/cmp-cmdline')
WPlug('hrsh7th/nvim-cmp')
WPlug('hrsh7th/cmp-nvim-lsp-signature-help')
WPlug('onsails/lspkind-nvim')
-- WPlug('yioneko/nvim-yati', { tag = '*' }) -- copium: fix Python indent auto-correct from smart-indent
WPlug('yioneko/nvim-yati', { tag = '*' }) -- copium: fix Python indent auto-correct from smart-indent
WPlug('nathanalderson/yang.vim')
-- WPlug('tzachar/cmp-tabnine', { ['do'] = './install.sh' })
@ -115,7 +116,7 @@ WPlug('gruvbox-community/gruvbox') -- theme provider
WPlug('nvim-lualine/lualine.nvim') -- fancy status line
WPlug('lukas-reineke/indent-blankline.nvim') -- identation lines on blank lines
WPlug('kyazdani42/nvim-web-devicons') -- icons for folder and filetypes
-- WPlug('m-demare/hlargs.nvim') -- highlights arguments; great for func prog
WPlug('m-demare/hlargs.nvim') -- highlights arguments; great for func prog
WPlug('folke/todo-comments.nvim') -- Highlights TODO
WPlug('NvChad/nvim-colorizer.lua') -- color highlighter with tailwind support
WPlug('roobert/tailwindcss-colorizer-cmp.nvim') -- color for tailiwnd for compe
@ -252,7 +253,7 @@ vim.keymap.set('n', '<leader>gg', '<cmd>GuessIndent<cr>')
vim.cmd([[
colorscheme gruvbox
]])
-- require('hlargs').setup()
require('hlargs').setup()
require('nvim-web-devicons').setup()
require('trouble').setup {
position = "bottom", -- position of the list can be: bottom, top, left, right
@ -587,12 +588,12 @@ vim.api.nvim_set_keymap('n', '<C-t>x', ':tabdo if tabpagenr() > 1 | tabclose | e
-- treesitter
require 'treesitter-context'
require('nvim-treesitter.configs').setup {
-- yati = {
-- enable = true,
-- default_lazy = true,
-- default_fallback = "auto",
-- disable = { "nix" }
-- },
yati = {
enable = true,
default_lazy = true,
default_fallback = "auto",
disable = { "nix" }
},
indent = { enable = false },
highlight = {
enable = true,

View File

@ -96,7 +96,7 @@ in {
*/
plugins = let
inherit
(inputs.nixpkgs-vimplugins.legacyPackages.${system}.vimPlugins)
(inputs.nixpkgs-latest.legacyPackages.${system}.vimPlugins)
plenary-nvim
nvim-treesitter
nvim-treesitter-textobjects
@ -127,6 +127,7 @@ in {
mason-lspconfig-nvim
mason-nvim
neogit
nlua-nvim
nvim-jqx
nvim-surround
nvim-web-devicons
@ -177,6 +178,7 @@ in {
mason-lspconfig-nvim
mason-nvim
neogit
nlua-nvim
nvim-jqx
nvim-surround
nvim-web-devicons