diff options
| author | Nantha Sorubakanthan <nantha@mielota.com> | 2026-04-25 11:37:48 +0200 |
|---|---|---|
| committer | Nantha Sorubakanthan <nantha@mielota.com> | 2026-04-25 11:37:48 +0200 |
| commit | 7489c87f450c603db60f498451a2f6a6acbd567f (patch) | |
| tree | f59ee4cb09e0f48fed83a411a063f3aa7adfd3d2 /artix/home/.config/nvim | |
| parent | 0e2bfc7cdb675a74ec1fb65b59acc143198151f2 (diff) | |
remove plugins
Diffstat (limited to 'artix/home/.config/nvim')
| -rw-r--r-- | artix/home/.config/nvim/init.lua | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/artix/home/.config/nvim/init.lua b/artix/home/.config/nvim/init.lua index 4474fd7..95fb04d 100644 --- a/artix/home/.config/nvim/init.lua +++ b/artix/home/.config/nvim/init.lua @@ -30,6 +30,16 @@ vim.o.listchars = "tab:๐กช ,trail:ยท,eol:โ,space:ยท,multispace:ยท,lead:ยท,lea vim.o.completeopt = "fuzzy,menuone,noselect" vim.diagnostic.config({ virtual_text = true }) +-- AUTOCOMPLETION + +vim.o.autocomplete = true +vim.o.completeopt = 'menu,menuone,noselect' + +-- STATUSBAR + +vim.diagnostic.status() +vim.lsp.status() + -- FRENCH SPELLS local spell_path = vim.fn.stdpath("data") .. "/site/spell" @@ -52,25 +62,13 @@ vim.cmd [[set spell]] vim.pack.add({ { src = "https://github.com/neovim/nvim-lspconfig" }, { src = "https://github.com/ibhagwan/fzf-lua" }, - { src = "https://github.com/nvim-tree/nvim-web-devicons" }, { src = "https://github.com/mfussenegger/nvim-jdtls" }, - { src = "https://github.com/mfussenegger/nvim-dap" }, - { src = "https://github.com/nvim-treesitter/nvim-treesitter" }, - { src = "https://github.com/folke/tokyonight.nvim" }, { src = "https://github.com/lewis6991/gitsigns.nvim" }, - { src = "https://github.com/windwp/nvim-autopairs" }, - { src = "https://github.com/saghen/blink.cmp" }, - { src = "https://github.com/saghen/blink.lib" }, { src = "https://github.com/stevearc/oil.nvim" }, { src = "https://github.com/sphamba/smear-cursor.nvim" }, }) require("gitsigns").setup({}) -require("nvim-autopairs").setup({}) -require("blink.cmp").setup({ - keymap = { preset = 'enter' }, - fuzzy = { implementation = "lua" } -}) require("oil").setup({ default_file_explorer = true, lsp_file_methods = { @@ -107,7 +105,6 @@ require("smear_cursor").setup({ distance_stop_animating = 0.4, }) -vim.cmd [[colorscheme tokyonight-night]] vim.cmd [[Gitsigns toggle_current_line_blame]] -- MAPPING |
