diff options
Diffstat (limited to 'artix/home/.config/nvim/init.lua')
| -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 |
