diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2023-10-06 23:04:14 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2023-10-06 23:04:14 +0200 |
| commit | d2d4140f74d74f5e43d8226c66ed2a57692fb365 (patch) | |
| tree | a497c803164ecaab9e99d4081cc18c44066e61c5 /config/nvim/lua | |
| parent | 40786e775c0d1540f88f8fab6af2a4b19a3e571e (diff) | |
| parent | 1d2e251d313a759246b95e6c4192e1e2c2f85bf4 (diff) | |
| download | dotfiles-d2d4140f74d74f5e43d8226c66ed2a57692fb365.tar.gz dotfiles-d2d4140f74d74f5e43d8226c66ed2a57692fb365.tar.bz2 dotfiles-d2d4140f74d74f5e43d8226c66ed2a57692fb365.zip | |
Merge branch 'master' of github.com:cacharle/dotfiles
Diffstat (limited to 'config/nvim/lua')
| -rw-r--r-- | config/nvim/lua/plugins.lua | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index 6d92a76..7319d17 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -14,6 +14,13 @@ return require("packer").startup(function() -- end -- } + use { + 'andymass/vim-matchup', + setup = function() + vim.g.matchup_matchparen_offscreen = { method = "popup" } + end + } + -- Put arguments on multiple lines use { "FooSoft/vim-argwrap", @@ -328,6 +335,22 @@ return require("packer").startup(function() -- end -- } + -- tokyonight color scheme + -- use { + -- "folke/tokyonight.nvim", + -- config = function() + -- vim.opt.termguicolors = true + -- vim.opt.background = "dark" + -- vim.cmd [[ colorscheme tokyonight-moon ]] + -- require("tokyonight").setup({ + -- styles = { + -- comments = { italic = true }, + -- keywords = { italic = true }, + -- }, + -- }) + -- end + -- } + -- status line use { "nvim-lualine/lualine.nvim", @@ -335,6 +358,7 @@ return require("packer").startup(function() config = function() require("lualine").setup { options = { + -- theme = "tokyonight", theme = "gruvbox", -- theme = "nord", icons_enabled = true, @@ -374,6 +398,11 @@ return require("packer").startup(function() highlight = { enable = true }, + matchup = { + enable = true, -- mandatory, false will disable the whole extension + -- disable = { "c", "ruby" }, -- optional, list of language that will be disabled + -- [options] + }, -- indent = { enable = true }, -- TODO: could be neat -- incremental_selection = { @@ -396,6 +425,7 @@ return require("packer").startup(function() requires = { {"nvim-lua/plenary.nvim"}, {"kyazdani42/nvim-web-devicons"}, + {"nvim-telescope/telescope-symbols.nvim"}, { "nvim-telescope/telescope-fzf-native.nvim", run = "make", |
